Skip to main content
GET
/
templates
List templates
curl --request GET \
  --url https://www.orgo.ai/api/templates \
  --header 'Authorization: Bearer <token>'
{
  "templates": [
    {
      "ref": "default/claude-code@1.0.0",
      "digest": "<string>",
      "published": "2023-11-07T05:31:56Z",
      "template": {
        "api_version": "orgo.ai/v1",
        "template": {
          "name": "claude-code",
          "version": "1.0.0",
          "description": "<string>"
        },
        "hardware": {},
        "secrets": [
          {}
        ],
        "vars": {},
        "env": {},
        "build": {},
        "files": "<array>",
        "apps": "<array>",
        "triggers": "<array>",
        "terminal": "<array>",
        "hooks": {},
        "telemetry": {},
        "egress_policy": {},
        "streaming": "<array>"
      }
    }
  ]
}
Returns the templates published under your account. Each item carries the template’s ref, its content-addressed digest, the published timestamp, and the full template document.
Looking for the curated templates Orgo ships (Claude Code, OpenClaw, Hermes)? Use List curated templates instead.

Query parameters

namespace
string
Filter to a single namespace. Your own templates are published under default unless you choose another namespace.

Response

templates
array
Array of template list items.

Example

curl https://www.orgo.ai/api/templates \
  -H "Authorization: Bearer $ORGO_API_KEY"

Response

{
  "templates": [
    {
      "ref": "default/claude-code@1.0.0",
      "digest": "a1b2c3d4e5f6a7b8c9d0e1f2a3b4c5d6e7f8a9b0c1d2e3f4a5b6c7d8e9f0a1b2",
      "published": "2026-06-08T17:00:00Z"
    }
  ]
}

Authorizations

Authorization
string
header
required

API key authentication. Get your key at orgo.ai/workspaces

Query Parameters

namespace
string

Filter to a single namespace. Your own templates default to default.

Response

Your templates

templates
object[]