curl --request GET \
--url 'https://api.computer.stateset.app/api/v1/templates' \
--header "X-API-Key: $STATESET_COMPUTER_USE_API_KEY"
[
{
"name": "Two-Person Tent",
"kind": "builtin",
"description": "Two-person tent, green — replacement for damaged pole set."
}
]
List Templates V1
Discover the agent_type values you can use on /trigger. Returns the union of platform built-ins (always queue-able) and any Template rows your tenant owns…
GET
/
api
/
v1
/
templates
curl --request GET \
--url 'https://api.computer.stateset.app/api/v1/templates' \
--header "X-API-Key: $STATESET_COMPUTER_USE_API_KEY"
[
{
"name": "Two-Person Tent",
"kind": "builtin",
"description": "Two-person tent, green — replacement for damaged pole set."
}
]
Discover the
agent_type values you can use on /trigger.
Returns the union of platform built-ins (always queue-able) and any
Template rows your tenant owns. Sorted: built-ins first (alphabetical),
then tenant templates.
Response
TemplateInfo[] — each element:
string
required
The exact string to pass as
agent_type on /trigger.string
required
builtin ships with the platform; tenant is owned by your org.string,null
Human-readable description (tenant templates only).
Status codes
| Code | Meaning |
|---|---|
200 | Successful Response |
curl --request GET \
--url 'https://api.computer.stateset.app/api/v1/templates' \
--header "X-API-Key: $STATESET_COMPUTER_USE_API_KEY"
[
{
"name": "Two-Person Tent",
"kind": "builtin",
"description": "Two-person tent, green — replacement for damaged pole set."
}
]
Last modified on August 31, 2026