Skip to main content
GET
/
publisher
/
{publisher_id}
/
tags
Tag Listing
curl --request GET \
  --url https://cds.thepublive.com/publisher/{publisher_id}/tags/ \
  --header 'Authorization: Basic <encoded-value>'
{
  "status": "ok",
  "data": [
    {
      "id": 500,
      "name": "Breaking News",
      "slug": "breaking-news",
      "absolute_url": "/tag/breaking-news"
    },
    {
      "id": 501,
      "name": "Technology",
      "slug": "technology",
      "absolute_url": "/tag/technology"
    }
  ],
  "message": "",
  "page_no": 1,
  "per_page": 10
}
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)
{
  "status": "ok",
  "data": [
    {
      "id": 500,
      "name": "Breaking News",
      "slug": "breaking-news",
      "absolute_url": "/tag/breaking-news"
    },
    {
      "id": 501,
      "name": "Technology",
      "slug": "technology",
      "absolute_url": "/tag/technology"
    }
  ],
  "message": "",
  "page_no": 1,
  "per_page": 10
}