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

# List Templates

> Public project template catalog available to this organization.



## OpenAPI

````yaml GET /orgs/{org_id}/templates
openapi: 3.1.0
info:
  title: Timbal Platform API
  description: Public API documentation for the Timbal platform
  license:
    name: ''
  version: 2.0.0
servers:
  - url: https://api.timbal.ai
    description: Production
  - url: https://api.dev.timbal.ai
    description: Development
security: []
tags:
  - name: ace
    description: Action Control Engine (ACE) operations
  - name: analytics
    description: Org and project analytics
  - name: billing
    description: Subscriptions, usage, and payment-related operations
  - name: content
    description: Re-sign stored content URLs
  - name: files
    description: File operations
  - name: iam
    description: IAM — actions, roles, users, and authorization introspection
  - name: k2
    description: Knowledge Bases v2 operations
  - name: orgs
    description: Organization operations
  - name: projects
    description: Project operations
  - name: runs
    description: Execution operations
  - name: templates
    description: Public project template catalog
  - name: users
    description: Authenticated user profile
paths:
  /orgs/{org_id}/templates:
    get:
      tags:
        - templates
      description: Public project template catalog available to this organization.
      operationId: handler
      parameters:
        - name: org_id
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Published public project templates
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListTemplatesResBody'
        '403':
          description: Forbidden
      security:
        - bearer_auth: []
components:
  schemas:
    ListTemplatesResBody:
      type: object
      required:
        - templates
      properties:
        templates:
          type: array
          items:
            $ref: '#/components/schemas/ProjectTemplate'
    ProjectTemplate:
      type: object
      description: |-
        A published public project template. Instantiate it via
        `POST /orgs/{org_id}/projects` with
        `{ "origin": { "type": "Template", "project_id": <id> } }`.
      required:
        - id
        - name
        - has_ui
        - template_uses
        - created_at
      properties:
        created_at:
          type: integer
          format: int64
          description: Creation timestamp in epoch milliseconds.
        description:
          type:
            - string
            - 'null'
          description: Short description of what the template provides.
        has_ui:
          type: boolean
          description: Whether the template includes a web UI.
        id:
          type: string
          description: Project id to pass as `project_id` when creating from this template.
        name:
          type: string
          description: Template display name.
        screenshot_signed_url:
          type:
            - string
            - 'null'
          description: >-
            CloudFront-signed screenshot URL, minted per response (TTL-bound).

            Present only for Timbal-hosted screenshots (private prefix) when
            signing

            is configured. To put a template banner on a public/cacheable
            surface

            (e.g. the timbal.ai marketing site), copy the object to a public
            prefix

            (`orgs/{org_id}/assets/...`) and serve that unsigned instead.
        screenshot_url:
          type:
            - string
            - 'null'
          description: '**Deprecated:** prefer `screenshot_signed_url` when present.'
          deprecated: true
        search_text:
          type:
            - string
            - 'null'
          description: >-
            Text corpus used for semantic similarity matching when recommending
            templates.
        template_description:
          type:
            - string
            - 'null'
          description: Public-facing description shown in the template catalog.
        template_uses:
          type: integer
          format: int64
          description: Number of times this template has been instantiated.
  securitySchemes:
    bearer_auth:
      type: http
      scheme: bearer
      description: >-
        Timbal API key. Obtain your API key from the Timbal platform settings.
        See [Authentication](/api-reference/authentication) for more
        information.

````