Skip to main content
GET
/
publisher
/
{publisher_id}
/
sitemap
/
allcontent-sitemap.xml
All-content Sitemap
curl --request GET \
  --url https://cds.thepublive.com/publisher/{publisher_id}/sitemap/allcontent-sitemap.xml/ \
  --header 'Authorization: Basic <encoded-value>'
{
  "status": "ok",
  "data": {
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<sitemapindex xmlns=\"http://www.sitemaps.org/schemas/sitemap/0.9\">\n  <sitemap>\n    <loc>https://www.example.com/sitemap/webcontent-sitemap.xml</loc>\n    <lastmod>2026-05-29</lastmod>\n  </sitemap>\n  <sitemap>\n    <loc>https://www.example.com/sitemap/news-sitemap.xml</loc>\n    <lastmod>2026-05-29</lastmod>\n  </sitemap>\n</sitemapindex>"
  }
}
Returns the master sitemap XML for all published content. This is typically the top-level sitemap index that links to individual category, tag, and content sitemaps.
publisher_id
string
required
Your Publisher ID
{
  "status": "ok",
  "data": {
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<sitemapindex xmlns=\"http://www.sitemaps.org/schemas/sitemap/0.9\">\n  <sitemap>\n    <loc>https://www.example.com/sitemap/webcontent-sitemap.xml</loc>\n    <lastmod>2026-05-29</lastmod>\n  </sitemap>\n  <sitemap>\n    <loc>https://www.example.com/sitemap/news-sitemap.xml</loc>\n    <lastmod>2026-05-29</lastmod>\n  </sitemap>\n</sitemapindex>"
  }
}
Last modified on May 29, 2026