> ## Documentation Index
> Fetch the complete documentation index at: https://docs.thepublive.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Paginated Web Story Sitemap

> Returns one dated page of the web story sitemap. Valid `date` values are discoverable from the [Web Story Sitemap](/dxp/api-reference/content-delivery/sitemap-webstory) index.

<Note>This operation previously shared a single documentation page with the article sitemap variant above; it now has its own URL.</Note>



## OpenAPI

````yaml /openapi/content-delivery.json get /publisher/{publisher_id}/sitemap/webstory_sitemap_{date}.xml/
openapi: 3.1.0
info:
  title: Publive Content Delivery API
  version: 1.0.0
  description: >-
    Read-only API for delivering publisher content, configuration, and static
    assets. All endpoints require HTTP Basic Auth and are GET requests.
servers:
  - url: https://cds.thepublive.com
security:
  - basicAuth: []
tags:
  - name: Site Configuration
  - name: Content
  - name: Posts
  - name: Forms
  - name: Static Files
  - name: Sitemaps
paths:
  /publisher/{publisher_id}/sitemap/webstory_sitemap_{date}.xml/:
    get:
      tags:
        - Sitemaps
      summary: Paginated Web Story Sitemap
      description: >-
        Returns one dated page of the web story sitemap. Valid `date` values are
        discoverable from the [Web Story
        Sitemap](/dxp/api-reference/content-delivery/sitemap-webstory) index.


        <Note>This operation previously shared a single documentation page with
        the article sitemap variant above; it now has its own URL.</Note>
      operationId: getPaginatedWebStorySitemap
      parameters:
        - $ref: '#/components/parameters/PublisherId'
        - name: date
          in: path
          required: true
          schema:
            type: string
          description: Sitemap page date, e.g. "2026-05-01"
      responses:
        '200':
          description: Web story sitemap page XML (as JSON string content)
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/StaticContentEnvelope'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          $ref: '#/components/responses/NotFound'
components:
  parameters:
    PublisherId:
      name: publisher_id
      in: path
      required: true
      schema:
        type: string
      description: Your Publisher ID
  schemas:
    StaticContentEnvelope:
      type: object
      properties:
        status:
          type: string
        data:
          type: object
          properties:
            content:
              type: string
    ErrorDetail:
      type: object
      properties:
        detail:
          type: string
  responses:
    Unauthorized:
      description: Invalid or missing credentials
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorDetail'
          example:
            detail: Invalid Auth Credentials
    NotFound:
      description: Resource not found
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorDetail'
          example:
            detail: File not found
  securitySchemes:
    basicAuth:
      type: http
      scheme: basic
      description: HTTP Basic Auth using your Publive API key pair, base64-encoded.

````