action listennotes_get_podcast_audience { label: "Fetch audience demographics for a podcast" description: "Fetch audience demographics for a podcast - 1) directly measured on the Listen Notes platform; 2) only supports audience breakdown by regions for now; 3) not every podcast has data." provider: listennotes method: GET path: "/podcasts/{id}/audience" encoding: json input: { type: "object" properties: { id: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" properties: { by_regions: { type: "array" items: { type: "object" properties: { ratio: { type: "string" description: "percentage of audience from this specific region" } region: { type: "string" description: "2-letter country code of a region." } } } } } } }