List all templates
List all templates of your org
Server URL
https://api.animationapi.com/v1GET
/templatesAuthorizationBearer <token>
API Key authentication using Bearer token.
Generate an API key from your dashboard and include it in the Authorization header.
Format: Authorization: Bearer your_api_key_here
In: header
Query Parameters
id?string
Maximum number of results to return.
limit?integer
Maximum number of results to return.
Default
20Range
1 <= value <= 100offset?integer
Number of results to skip.
Default
0Range
0 <= valueResponse Body
curl -X GET "https://api.animationapi.com/v1/templates?id=string&limit=20&offset=0"{
"data": [
{
"id": "22226334-0000-0000-b290-0b30ad82d5d5",
"name": "Twitter campaign - Dark version",
"created_at": "2025-07-19T00:12:12.000Z",
"updated_at": "2025-07-19T00:12:12.000Z"
}
],
"pagination": {
"limit": 20,
"offset": 0,
"total": 150,
"has_more": true
}
}