Skip to main content
GET https://cds.thepublive.com/publisher/{publisher_id}/navbar/ Returns the navigation menu configuration with hierarchical support for nested menu items.

Headers

NameTypeRequiredDescription
usernamestringYesAPI Key
passwordstringYesAPI Secret

Response Fields

Each navbar item contains:
FieldTypeDescription
linkstringURL path for the menu item
namestringDisplay text
childrenarray/nullNested child menu items (same structure)
open_new_tabbooleanWhether to open link in a new tab
{
  "status": "ok",
  "data": [
    {
      "link": "/news",
      "name": "News",
      "children": [
        {
          "link": "/news/politics",
          "name": "Politics",
          "children": null,
          "open_new_tab": false
        },
        {
          "link": "/news/business",
          "name": "Business",
          "children": null,
          "open_new_tab": false
        }
      ],
      "open_new_tab": false
    },
    {
      "link": "/opinion",
      "name": "Opinion",
      "children": null,
      "open_new_tab": false
    }
  ],
  "message": ""
}