action bbc_get_podcast_episodes { label: "Podcast Episodes" description: "Retrieve all episodes for a specific podcast\n" provider: bbc method: GET path: "/podcasts/{pid}/episodes" encoding: json input: { type: "object" properties: { "X-API-Key": { type: "string" } limit: { type: "string" } offset: { type: "string" } pid: { type: "string" } } required: ["X-API-Key", "pid"] additionalProperties: false } output: { type: "object" additionalProperties: true } }