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

# Get sitemap

> Returns the brand's sitemap as XML, listing its public listing URLs.



## OpenAPI

````yaml get /v1/brands/{brandId}/sitemap
openapi: 3.0.0
info:
  title: Way Partner API
  description: >-
    REST API for Way partners: list experiences, check availability, run
    checkout, and manage bookings.
  version: '1.0'
servers:
  - url: https://api.letsway.com
    description: Production.
  - url: https://api.staging.letsway.com
    description: Staging.
security: []
tags:
  - name: Listings
    description: 'Retrieve the listings a brand offers: experiences, events, and resources.'
  - name: Availability
    description: Dates, sessions, and price tiers for scheduling a booking.
  - name: Carts & Checkout
    description: >-
      Payment intents and booking creation. The cart ID is a client-generated
      UUID; there is no create-cart endpoint.
  - name: Bookings
    description: Retrieve, cancel, and reschedule bookings.
  - name: Experiences
    description: Experience details, settings, custom questions, reviews, and hosts.
  - name: Brand Configuration
    description: Brand settings, taxonomy, terms, and promotion code validation.
  - name: Waitlists
    description: Waitlists for sold-out sessions and invitation handling.
  - name: Integrations
    description: Configured integrations, analytics, and room-charge validation.
  - name: Organizations
    description: Organization-level access across brands.
paths:
  /v1/brands/{brandId}/sitemap:
    get:
      tags:
        - Brand Configuration
      summary: Get sitemap
      description: Returns the brand's sitemap as XML, listing its public listing URLs.
      operationId: SitemapPublicController_export
      parameters:
        - $ref: '#/components/parameters/brandIdPath_63'
      responses:
        '200':
          description: Get sitemap.
          content:
            application/json:
              schema:
                type: string
                example: |-
                  <?xml version="1.0" encoding="UTF-8"?>
                          <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
                              
                            <url>
                              <loc>https://embed-demo.staging.letsway.com/brands/f2ce0a06-7997-4626-9532-65ac70f3a19c/#!/e/time-base-tax-test-718113e5</loc>
                              <lastmod>2025-12-10</lastmod>
                              <changefreq>weekly</changefreq>
                            </url>

                            <url>
                              <loc>https://embed-demo.staging.letsway.com/brands/f2ce0a06-7997-4626-9532-65ac70f3a19c/#!/e/host-test-taxes-48027333</loc>
                              <lastmod>2025-12-04</lastmod>
                              <changefreq>we
              example: |-
                <?xml version="1.0" encoding="UTF-8"?>
                        <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
                            
                          <url>
                            <loc>https://embed-demo.staging.letsway.com/brands/f2ce0a06-7997-4626-9532-65ac70f3a19c/#!/e/time-base-tax-test-718113e5</loc>
                            <lastmod>2025-12-10</lastmod>
                            <changefreq>weekly</changefreq>
                          </url>

                          <url>
                            <loc>https://embed-demo.staging.letsway.com/brands/f2ce0a06-7997-4626-9532-65ac70f3a19c/#!/e/host-test-taxes-48027333</loc>
                            <lastmod>2025-12-04</lastmod>
                            <changefreq>we
      security: []
components:
  parameters:
    brandIdPath_63:
      name: brandId
      in: path
      schema:
        type: string
      required: true
      description: >-
        The brand's ID - must match the brand your API key identifies (or the
        Way-Brand-Id header when one is sent).

````