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

# List catalogue products (live Meta proxy)

> Live pass-through proxy to Meta's Catalog API — matches the internal
CatalogueProductView (no local product table, see WHATSAPP_API.md § 10).
catalog_id is a required query param rather than a path segment, since a
workspace's linked catalogue isn't the only one its owner may have access
to on Meta's side.



## OpenAPI

````yaml /openapi.json get /api/v1/catalogue/products/
openapi: 3.0.3
info:
  title: ChatBridge Public API
  version: 1.0.0
  description: >-
    Customer-facing REST API for ChatBridge — contacts, conversations, messages,
    templates, team, catalogue, tickets, and WhatsApp Flows. Authenticate with a
    workspace API key: `Authorization: Bearer cb_...`. See
    https://github.com/algosmiths/whatschat/blob/main/public_api.md for the full
    scope/versioning reference.
servers:
  - url: https://api.algosmiths.com
    description: Production
security: []
paths:
  /api/v1/catalogue/products/:
    get:
      tags:
        - Catalogue
      summary: List catalogue products (live Meta proxy)
      description: >-
        Live pass-through proxy to Meta's Catalog API — matches the internal

        CatalogueProductView (no local product table, see WHATSAPP_API.md § 10).

        catalog_id is a required query param rather than a path segment, since a

        workspace's linked catalogue isn't the only one its owner may have
        access

        to on Meta's side.
      operationId: catalogue_products_retrieve
      parameters:
        - in: query
          name: after
          schema:
            type: string
          description: Pagination cursor from a previous response
        - in: query
          name: catalog_id
          schema:
            type: string
          description: Meta catalog ID
          required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                type: object
                additionalProperties: {}
          description: ''
      security:
        - ApiKeyAuth: []
        - tokenAuth: []
        - CookieAuth: []
components:
  securitySchemes:
    ApiKeyAuth:
      type: http
      scheme: bearer
      bearerFormat: cb_...
      description: >-
        Workspace API key, e.g. `Authorization: Bearer cb_live_...`. Create one
        in Settings → API Keys. See public_api.md § 3 for scopes.
    tokenAuth:
      type: apiKey
      in: header
      name: Authorization
      description: Token-based authentication with required prefix "Token"
    CookieAuth:
      type: apiKey
      in: cookie
      name: token
      description: Dashboard session cookie — internal use only, not the public contract.

````