Skip to main content
GET
/
publisher
/
{publisher_id}
/
sitemap
/
webstory-sitemap.xml
Web Story Sitemap
curl --request GET \
  --url https://cds.thepublive.com/publisher/{publisher_id}/sitemap/webstory-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/webstory_sitemap_2026-05-01.xml</loc>\n    <lastmod>2026-05-01</lastmod>\n  </sitemap>\n  <sitemap>\n    <loc>https://www.example.com/sitemap/webstory_sitemap_2026-04-01.xml</loc>\n    <lastmod>2026-04-01</lastmod>\n  </sitemap>\n</sitemapindex>"
  }
}
Returns the web story sitemap XML, which acts as an index linking to paginated web story sitemaps (webstory_sitemap_<date>.xml).
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/webstory_sitemap_2026-05-01.xml</loc>\n    <lastmod>2026-05-01</lastmod>\n  </sitemap>\n  <sitemap>\n    <loc>https://www.example.com/sitemap/webstory_sitemap_2026-04-01.xml</loc>\n    <lastmod>2026-04-01</lastmod>\n  </sitemap>\n</sitemapindex>"
  }
}
Last modified on May 29, 2026