Skip to content

List Custom Templates

FreshGET
GET https://api.creatify.ai/api/custom_templates/

Retrieve a list of all custom templates in your workspace.

Headers

HeaderTypeRequiredDescription
X-API-IDstringYesYour Creatify API ID
X-API-KEYstringYesYour Creatify API key

Example Request

bash
curl -X GET 'https://api.creatify.ai/api/custom_templates/' \
  -H 'X-API-ID: your-api-id' \
  -H 'X-API-KEY: your-api-key'

Response

json
[
  {
    "id": "template-001",
    "name": "Product Launch Template",
    "description": "Professional product launch video template",
    "thumbnail": "https://cdn.creatify.ai/templates/template-001-thumb.jpg",
    "created_at": "2024-01-15T10:30:00Z"
  }
]

Status Codes

CodeDescription
200Success
401Unauthorized -- invalid API credentials
429Rate limit exceeded
500Internal server error