action spotify_get_a_categories_playlists { label: "Get Category's Playlists\n" description: "Get a list of Spotify playlists tagged with a particular category.\n" provider: spotify method: GET path: "/browse/categories/{category_id}/playlists" encoding: json input: { type: "object" properties: { category_id: { type: "string" description: "The [Spotify category ID](/documentation/web-api/#spotify-uris-and-ids) for the category.\n" } country: { type: "string" description: "A country: an [ISO 3166-1 alpha-2 country code](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2). Provide this parameter to ensure that the category exists for a particular country.\n" } } required: ["category_id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }