> ## 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 catalog 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: Search
    description: Search functionality endpoints
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 Wine Collection</h1><p>We are passionate about
                  bringing you the finest wines from around the world. Our
                  carefully curated selection includes premium vintages and
                  exclusive discoveries that you won't find anywhere
                  else.</p><p>Founded in 2020, our mission is to make
                  exceptional wines accessible through our subscription service
                  and expert recommendations.</p>
                seo:
                  title: About Our Wine Collection - Premium Wines & Subscriptions
                  description: >-
                    Learn about our carefully curated wine selection and
                    subscription services. Discover premium vintages and
                    exclusive wines delivered to your door.
                  ogImage: >-
                    https://marzipan-cloud-dev.b-cdn.net/1/ea9f0c5b-e517-4e24-99a1-90d40dcb1c79.jpg
                status: published
                fields:
                  hero_image: >-
                    https://marzipan-cloud-dev.b-cdn.net/1/3bc26391-8cc1-4d20-a636-1c2ec55ef10d.jpg
                  team_photo: >-
                    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
            og_image:
              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
        created_at:
          type: string
          format: date-time
          description: Creation timestamp
        updated_at:
          type: string
          format: date-time
          description: Last update timestamp
        published_at:
          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

````