Skip to main content
GET
/
templates
List templates
curl --request GET \
  --url https://api.example.com/templates
{
  "data": [
    {}
  ],
  "nextCursor": {},
  "hasMore": true
}
Use this endpoint to discover available template IDs and their variable names before triggering generations.
cursor
string
Pagination cursor from the previous response’s nextCursor field.
limit
integer
default:"20"
Number of results to return (1–100).
data
Template[]
Array of template objects.
nextCursor
string | null
Cursor to pass in the next request. null when there are no more results.
hasMore
boolean
Whether more results exist beyond this page.