Skip to main content
GET
/
publisher
/
{publisher_id}
/
tag
/
{identifier}
Tag Details
curl --request GET \
  --url https://cds.thepublive.com/publisher/{publisher_id}/tag/{identifier}/ \
  --header 'Authorization: Basic <encoded-value>'
{
  "status": "ok",
  "data": {
    "id": 500,
    "name": "Breaking News",
    "slug": "breaking-news",
    "display_name": null,
    "meta_title": "Breaking News - My Publication",
    "meta_description": "Latest breaking news stories",
    "og_title": "Breaking News",
    "og_description": "Latest breaking news stories",
    "og_image": null,
    "twitter_title": "Breaking News",
    "twitter_description": "Latest breaking news stories",
    "twitter_image": null,
    "absolute_url": "/tag/breaking-news"
  },
  "message": ""
}
Returns detailed information about a single tag, including SEO metadata and social sharing tags.
publisher_id
string
required
Your Publisher ID
identifier
string
required
Tag ID or slug
{
  "status": "ok",
  "data": {
    "id": 500,
    "name": "Breaking News",
    "slug": "breaking-news",
    "display_name": null,
    "meta_title": "Breaking News - My Publication",
    "meta_description": "Latest breaking news stories",
    "og_title": "Breaking News",
    "og_description": "Latest breaking news stories",
    "og_image": null,
    "twitter_title": "Breaking News",
    "twitter_description": "Latest breaking news stories",
    "twitter_image": null,
    "absolute_url": "/tag/breaking-news"
  },
  "message": ""
}