API Reference · Templates

List saved resource templates

List saved resource templates

GET/v1/tenants/{name}/templates

Authorization

x-api-keystringrequired
Your per-workspace API key, e.g. llc_AbC123…. Also accepted as Authorization: Bearer <key>. Mint keys on your workspace's API keys page — each key belongs to one workspace.

Path parameters

namestringrequired
Workspace (tenant) name.

Response

200The workspace's templates, newest first.

templatesarray
curl https://api.live-llm.com/v1/tenants/acme/templates \
  -H "x-api-key: $LIVELLM_KEY"
Try itGEThttps://api.live-llm.com/v1/tenants/{name}/templates
Fill required path param: name.
Example response200
{
  "templates": [
    {
      "id": "tpl_3fa1",
      "name": "scraper browser",
      "description": "Chromium with the agent pre-wired",
      "kind": "browser",
      "config": {
        "browser": {
          "aiAgent": {
            "enabled": true,
            "provider": "zai-coding-plan",
            "model": "glm-5.2"
          }
        }
      },
      "createdAt": "2026-07-11T08:30:00Z"
    }
  ]
}