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

# Page

> Get the full content and details of a specific CMS page by its slug identifier.



## OpenAPI

````yaml /api-reference/openapi.json get /cms/pages/{pageSlug}
openapi: 3.0.0
info:
  title: Marzipan API
  version: 1.0.0
servers:
  - url: https://api.marzipan.co/v1
security:
  - tenantAuth: []
tags:
  - name: Account
    description: >-
      Account management endpoints including registration, login, and user
      details
  - name: Carts
    description: Shopping cart management endpoints
  - name: Products
    description: Product catalogue and search endpoints
  - name: Subscriptions
    description: Subscription management and renewal endpoints
  - name: CMS
    description: Content management system endpoints
  - name: Messaging
    description: Message and communication endpoints
  - name: Settings
    description: >-
      Storefront settings and market detection used to configure the web
      components and checkout.
  - name: Analytics
    description: Storefront visit and attribution tracking.
  - name: Rewards
    description: >-
      Loyalty and rewards programme endpoints for the authenticated customer,
      covering points balance, tier status, perks, exclusive products and
      transaction history.
  - name: Forms
    description: Render and submit dynamic storefront forms defined in the CMS.
  - name: Events
    description: >-
      Check event availability, browse occurrences and recurring dates, generate
      ticket QR codes, and manage event waitlists (join, leave, check status,
      and claim promoted spots).
paths:
  /cms/pages/{pageSlug}:
    parameters:
      - name: pageSlug
        in: path
        required: true
        description: The unique slug identifier for the page
        schema:
          type: string
        example: about-us
    get:
      tags:
        - CMS
      summary: Page
      description: >-
        Get the full content and details of a specific CMS page by its slug
        identifier.
      parameters: []
      responses:
        '200':
          description: CMS page details
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CmsPageDetail'
              example:
                slug: about-us
                name: About Us
                content: >-
                  <h1>About Our Collection</h1><p>We are passionate about
                  bringing you the finest products from around the world. Our
                  carefully curated selection includes premium ranges and
                  exclusive discoveries that you won't find anywhere
                  else.</p><p>Founded in 2020, our mission is to make
                  exceptional products accessible through our subscription
                  service and expert recommendations.</p>
                seo:
                  title: About Our Collection - Premium Products & Subscriptions
                  description: >-
                    Learn about our carefully curated selection and subscription
                    services. Discover premium ranges and exclusive products
                    delivered to your door.
                  ogImage: >-
                    https://marzipan-cloud-dev.b-cdn.net/1/ea9f0c5b-e517-4e24-99a1-90d40dcb1c79.jpg
                status: published
                fields:
                  heroImage: >-
                    https://marzipan-cloud-dev.b-cdn.net/1/3bc26391-8cc1-4d20-a636-1c2ec55ef10d.jpg
                  teamPhoto: >-
                    https://marzipan-cloud-dev.b-cdn.net/1/0736c529-a33d-4b8c-8126-eb69779dcdad.jpg
                createdAt: '2024-01-15T10:30:00.000000Z'
                updatedAt: '2024-02-01T14:20:00.000000Z'
                publishedAt: '2024-01-15T10:30:00.000000Z'
        '401':
          description: Unauthenticated
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
              example:
                message: string
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
              example:
                message: string
components:
  schemas:
    CmsPageDetail:
      type: object
      properties:
        slug:
          type: string
          description: URL-friendly page identifier
        name:
          type: string
          description: Page title/name
        content:
          type: string
          description: Page content/body
        seo:
          type: object
          properties:
            title:
              type: string
              description: SEO meta title
            description:
              type: string
              description: SEO meta description
            ogImage:
              type: string
              nullable: true
              description: Open Graph image URL (1200x630)
          description: SEO metadata
        status:
          type: string
          enum:
            - published
            - draft
          description: Page publication status
        fields:
          type: object
          additionalProperties:
            type: string
          description: Custom fields as key-value pairs
        createdAt:
          type: string
          format: date-time
          description: Creation timestamp
        updatedAt:
          type: string
          format: date-time
          description: Last update timestamp
        publishedAt:
          type: string
          format: date-time
          nullable: true
          description: Publication timestamp
  securitySchemes:
    tenantAuth:
      type: http
      scheme: bearer
      description: >-
        Bearer authentication header of the form `Bearer <token>`, where
        `<token>` is your API token.
      bearerFormat: JWT

````