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

# List curated templates

> Browse the templates Orgo publishes and maintains.

Lists the curated templates Orgo builds and keeps up to date — ready-to-launch environments like Claude Code, OpenClaw, and Hermes. These are available to **every account on any plan**: you don't need a Scale plan to launch them, only to publish your own.

To launch one, pass its `ref` as `template_ref` to [Create computer](/api-reference/computers/create).

## Response

<ResponseField name="templates" type="array">
  Array of curated template list items, each with `ref`, `digest`, `published`, and the full `template` document.
</ResponseField>

## Example

<CodeGroup>
  ```bash cURL theme={null}
  curl https://www.orgo.ai/api/templates/global \
    -H "Authorization: Bearer $ORGO_API_KEY"
  ```

  ```python Python theme={null}
  import os, requests

  r = requests.get(
      "https://www.orgo.ai/api/templates/global",
      headers={"Authorization": f"Bearer {os.environ['ORGO_API_KEY']}"},
  )
  for t in r.json()["templates"]:
      print(t["ref"])
  ```

  ```javascript JavaScript theme={null}
  const r = await fetch("https://www.orgo.ai/api/templates/global", {
    headers: { Authorization: `Bearer ${process.env.ORGO_API_KEY}` },
  });
  const { templates } = await r.json();
  console.log(templates.map((t) => t.ref));
  ```
</CodeGroup>

### Response

```json theme={null}
{
  "templates": [
    {
      "ref": "system/claude-code@1.0.0",
      "digest": "a1b2c3d4e5f6a7b8c9d0e1f2a3b4c5d6e7f8a9b0c1d2e3f4a5b6c7d8e9f0a1b2",
      "published": "2026-06-08T17:00:00Z"
    },
    {
      "ref": "system/openclaw@1.0.0",
      "digest": "b2c3d4e5f6a7b8c9d0e1f2a3b4c5d6e7f8a9b0c1d2e3f4a5b6c7d8e9f0a1b2c3",
      "published": "2026-06-08T17:00:00Z"
    },
    {
      "ref": "system/hermes-agent@1.0.0",
      "digest": "c3d4e5f6a7b8c9d0e1f2a3b4c5d6e7f8a9b0c1d2e3f4a5b6c7d8e9f0a1b2c3d4",
      "published": "2026-06-08T17:00:00Z"
    }
  ]
}
```

<Tip>
  To list every version of a single curated template, call `GET /templates/global/{namespace}/{name}` — e.g. `https://www.orgo.ai/api/templates/global/system/claude-code`.
</Tip>

<Card title="Launch a curated template" icon="rocket" href="/guides/templates/quickstart#launch-a-curated-template">
  Go from a curated `ref` to a running computer in one API call.
</Card>


## OpenAPI

````yaml GET /templates/global
openapi: 3.1.0
info:
  title: Orgo API
  description: >-
    Launch cloud computers that AI agents can control and interact with. Create
    workspaces, provision computers, and control them programmatically.
  version: 2.0.0
  contact:
    name: Orgo Support
    email: spencer@orgo.ai
    url: https://orgo.ai
servers:
  - url: https://www.orgo.ai/api
    description: Production
security:
  - bearerAuth: []
tags:
  - name: Workspaces
    description: Organize computers into named workspaces
  - name: Computers
    description: Provision and manage virtual computers
  - name: Computer Lifecycle
    description: Start, stop, and restart computers
  - name: Computer Actions
    description: Control mouse, keyboard, and execute commands
  - name: Streaming
    description: Stream computer display via RTMP
  - name: Files
    description: Upload and download files
  - name: Templates
    description: Author, build, and launch reproducible computers from templates
paths:
  /templates/global:
    get:
      tags:
        - Templates
      summary: List curated templates
      description: >-
        Lists the curated templates Orgo publishes and maintains (the `system`
        namespace), e.g. `system/claude-code@1.0.0`. Launchable on any paid
        plan.
      operationId: listCuratedTemplates
      responses:
        '200':
          description: Curated templates
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TemplateListResponse'
        '401':
          $ref: '#/components/responses/Unauthorized'
components:
  schemas:
    TemplateListResponse:
      type: object
      properties:
        templates:
          type: array
          items:
            $ref: '#/components/schemas/TemplateListItem'
    TemplateListItem:
      type: object
      properties:
        ref:
          type: string
          description: Template ref, `namespace/name@version`.
          example: default/claude-code@1.0.0
        digest:
          type: string
          description: >-
            Content-addressed SHA-256 digest of the canonical template. Two
            semantically identical templates always share a digest.
        published:
          type: string
          format: date-time
        template:
          $ref: '#/components/schemas/Template'
    Error:
      type: object
      properties:
        error:
          type: string
          description: Error message
    Template:
      type: object
      description: >-
        An orgo.ai/v1 template document. Only `api_version` and `template` are
        required. See the full JSON Schema at GET /template-schema, or the
        schema guide at https://docs.orgo.ai/guides/templates/schema.
      required:
        - api_version
        - template
      additionalProperties: true
      properties:
        api_version:
          type: string
          enum:
            - orgo.ai/v1
        template:
          type: object
          required:
            - name
            - version
          properties:
            name:
              type: string
              description: Lowercase kebab-case, 1-64 chars.
              example: claude-code
            version:
              type: string
              description: Semver, immutable once published.
              example: 1.0.0
            description:
              type: string
        hardware:
          type: object
        secrets:
          type: array
          items:
            type: object
        vars:
          type: object
        env:
          type: object
        build:
          type: object
        files:
          type: array
        apps:
          type: array
        triggers:
          type: array
        terminal:
          type: array
        hooks:
          type: object
        telemetry:
          type: object
        egress_policy:
          type: object
        streaming:
          type: array
  responses:
    Unauthorized:
      description: Invalid or missing API key
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
          example:
            error: Invalid API key
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: API key authentication. Get your key at orgo.ai/workspaces

````