Skip to main content
GET
/
templates
List instance templates
curl --request GET \
  --url https://runcrate.ai/api/v1/templates \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "name": "<string>",
      "description": "<string>",
      "category": "<string>"
    }
  ],
  "meta": {
    "cursor": "<string>",
    "hasMore": true,
    "total": 123,
    "requestId": "<string>"
  }
}

Documentation Index

Fetch the complete documentation index at: https://runcrate.ai/docs/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Use a Runcrate API key with the rc_live_* prefix as the bearer token. Create one at https://www.runcrate.ai/dashboard/api-keys.

Query Parameters

page
integer
default:1
Required range: x >= 1
page_size
integer
default:25
Required range: 1 <= x <= 100
category
string
sort_by
enum<string>
Available options:
created_at,
name,
category,
updated_at
sort_dir
enum<string>
Available options:
asc,
desc

Response

Templates.

data
object[]
required
meta
object

Pagination metadata on list responses.