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

# List Catalog

> Browse global templates, with this org's enable state on each row.



## OpenAPI

````yaml /api/openapi.json get /v1/templates/catalog
openapi: 3.1.0
info:
  title: MeshAPI
  description: One key, all AI models.
  version: 0.1.0
servers:
  - url: https://api.meshapi.ai
security:
  - BearerAuth: []
paths:
  /v1/templates/catalog:
    get:
      tags:
        - Templates
      summary: List Catalog
      description: Browse global templates, with this org's enable state on each row.
      operationId: list_catalog
      parameters:
        - name: q
          in: query
          required: false
          schema:
            anyOf:
              - type: string
                maxLength: 200
              - type: 'null'
            description: Search name + description
            title: Q
          description: Search name + description
        - name: category
          in: query
          required: false
          schema:
            anyOf:
              - type: string
                enum:
                  - writing
                  - code
                  - support
                  - data
                  - marketing
                  - agents
                  - productivity
                  - research
                  - sales
                  - operations
              - type: 'null'
            description: Filter to one category
            title: Category
          description: Filter to one category
        - name: sort
          in: query
          required: false
          schema:
            enum:
              - popular
              - recent
              - name
            type: string
            default: popular
            title: Sort
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            maximum: 100
            minimum: 1
            default: 24
            title: Limit
        - name: offset
          in: query
          required: false
          schema:
            type: integer
            minimum: 0
            default: 0
            title: Offset
        - in: header
          name: X-Mesh-Version
          required: false
          schema:
            type: string
            enum:
              - 2026-08
            default: 2026-08
          example: 2026-08
          description: >-
            Dated version of the API contract to pin this request to. Omit it
            and the request is served under `2026-08` — the oldest supported
            version, so an existing integration is never moved by a release. A
            malformed or unsupported value is rejected with `400
            invalid_api_version` rather than falling back silently. The version
            actually served is echoed as `X-Mesh-Version` on every response,
            including errors.
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CatalogPage'
        '400':
          description: No org context on the caller's identity
        '401':
          description: Missing or invalid credentials
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - BearerAuth: []
components:
  schemas:
    CatalogPage:
      properties:
        items:
          items:
            $ref: '#/components/schemas/CatalogTemplate'
          type: array
          title: Items
        total:
          type: integer
          title: Total
        limit:
          type: integer
          title: Limit
        offset:
          type: integer
          title: Offset
      type: object
      required:
        - items
        - total
        - limit
        - offset
      title: CatalogPage
      description: Envelope, not a bare list — the grid's "Showing 9 of 100" needs `total`.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    CatalogTemplate:
      properties:
        id:
          type: string
          title: Id
        name:
          type: string
          title: Name
        description:
          anyOf:
            - type: string
            - type: 'null'
          title: Description
        category:
          anyOf:
            - type: string
            - type: 'null'
          title: Category
        version:
          anyOf:
            - type: string
            - type: 'null'
          title: Version
        is_beta:
          type: boolean
          title: Is Beta
        system:
          anyOf:
            - type: string
            - type: 'null'
          title: System
        model:
          anyOf:
            - type: string
            - type: 'null'
          title: Model
        params:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          title: Params
        variables:
          anyOf:
            - items:
                type: string
              type: array
            - type: 'null'
          title: Variables
        enable_count:
          type: integer
          title: Enable Count
        is_enabled:
          type: boolean
          title: Is Enabled
        created_at:
          type: string
          title: Created At
        updated_at:
          type: string
          title: Updated At
      type: object
      required:
        - id
        - name
        - description
        - category
        - version
        - is_beta
        - system
        - model
        - params
        - variables
        - enable_count
        - is_enabled
        - created_at
        - updated_at
      title: CatalogTemplate
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      description: >-
        Enter your MeshAPI key (`rsk_...`) — sent as `Authorization: Bearer
        <key>`.

````