Rensei docs
API ReferenceTemplates

List template catalogue entries.

Returns the template catalogue, optionally filtered by tracker, author, or category, with limit/offset pagination. Human principals only: a browser session or a WorkOS user-token bearer is accepted; rsk_* API keys and BYOA OAuth-agent tokens authenticate but are rejected 403.

GET
/api/templates

Authorization

AuthorizationBearer <token>

Rensei API key presented as Authorization: Bearer rsk_live_. Required API-key scopes are recorded per operation in x-rensei-required-scopes.

In: header

Query Parameters

tracker?string

Filter to templates supporting this tracker.

author?string

Filter by author (org slug).

category?string

Filter by category.

limit?number

Page size (max 200, default 50).

offset?number

Page offset (default 0).

Response Body

application/json

curl -X GET "https://example.com/api/templates"
{
  "templates": [
    {
      "id": "string",
      "slug": "string",
      "name": "string",
      "description": "string",
      "author": "string",
      "latestVersion": "string",
      "category": "string",
      "createdAt": "string",
      "updatedAt": "string"
    }
  ],
  "pagination": {
    "limit": 0,
    "offset": 0,
    "returned": 0
  }
}
Empty
Empty