action spotify_get_multiple_episodes { label: "Get Several Episodes\n" description: "Get Spotify catalog information for several episodes based on their Spotify IDs.\n" provider: spotify method: GET path: "/episodes" encoding: json input: { type: "object" properties: { ids: { type: "string" description: "A comma-separated list of the [Spotify IDs](/documentation/web-api/#spotify-uris-and-ids) for the episodes. Maximum: 50 IDs.\n" } } required: ["ids"] additionalProperties: false } output: { type: "object" additionalProperties: true } }