List all templates

List all templates of your org

Server URLhttps://api.animationapi.com/v1
GET/templates
AuthorizationBearer <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.

Default20
Range1 <= value <= 100
offset?integer

Number of results to skip.

Default0
Range0 <= value

Response 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
  }
}