Retrieve playlist tags

Get a list of unique tags that have been added to a partner's playlists.

Tags are returned ordered by the order saved in the ~/playlists/tags POST endpoint, or alphabetically if no order is saved.

OAuth

 \ Example request

GET https://api.7digital.com/1.2/playlists/tags?country=GB&oauth_consumer_key=YOUR_KEY_HERE&oauth_token=...

Example response

{
  "tags": [{
    "name": "Dance",
    "hidden": false
  }, {
    "name": "Rock",
    "hidden": true
  }, {
    "name": "Pop",
    "hidden": false
  }]
}
Query Params
string
required

The ISO 2-character code of the country to which your oauth_consumer_key has access.

Language
LoadingLoading…