action spotify_get_a_category { label: "Get Single Browse Category\n" description: "Get a single category used to tag items in Spotify (on, for example, the Spotify player’s “Browse” tab).\n" provider: spotify method: GET path: "/browse/categories/{category_id}" 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" } locale: { type: "string" description: "The desired language, consisting of an [ISO 639-1](http://en.wikipedia.org/wiki/ISO_639-1) language code and an [ISO 3166-1 alpha-2 country code](http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2), joined by an underscore. For example: `es_MX`, meaning "Spanish (Mexico)". Provide this parameter if you want the category strings returned in a particular language.
_**Note**: if `locale` is not supplied, or if the specified language is not available, the category strings returned will be in the Spotify default language (American English)._\n" } } required: ["category_id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }