Skip to main content
GET
/
publisher
/
{publisher_id}
/
tag
List Tags
curl --request GET \
  --url https://cms.thepublive.com/publisher/{publisher_id}/tag/ \
  --header 'Authorization: Basic <encoded-value>'
{
  "count": 112118,
  "next": "https://cms.thepublive.com/publisher/123/tag/?page=2&limit=10",
  "previous": null,
  "results": [
    {
      "id": 500,
      "name": "Breaking News",
      "english_name": "Breaking News",
      "slug": "breaking-news",
      "absolute_url": "/tag/breaking-news",
      "meta_title": "",
      "meta_description": ""
    }
  ]
}
Returns a paginated list of all tags.
publisher_id
string
required
Your Publisher ID
page
integer
default:"1"
Page number (max: 1000)
limit
integer
default:"10"
Items per page (max: 50)
{
  "count": 112118,
  "next": "https://cms.thepublive.com/publisher/123/tag/?page=2&limit=10",
  "previous": null,
  "results": [
    {
      "id": 500,
      "name": "Breaking News",
      "english_name": "Breaking News",
      "slug": "breaking-news",
      "absolute_url": "/tag/breaking-news",
      "meta_title": "",
      "meta_description": ""
    }
  ]
}