List Inspirations
FreshGETGET https://api.creatify.ai/api/inspirations/Retrieve a list of all available inspiration templates. Inspirations are pre-built creative concepts that can be used as starting points for video creation.
Headers
| Header | Type | Required | Description |
|---|---|---|---|
X-API-ID | string | Yes | Your Creatify API ID |
X-API-KEY | string | Yes | Your Creatify API key |
Example Request
bash
curl -X GET 'https://api.creatify.ai/api/inspirations/' \
-H 'X-API-ID: your-api-id' \
-H 'X-API-KEY: your-api-key'Response
json
[
{
"id": "insp-001",
"name": "Product Showcase",
"description": "Dynamic product showcase with rotating angles",
"thumbnail": "https://cdn.creatify.ai/inspirations/insp-001-thumb.jpg",
"category": "ecommerce",
"created_at": "2024-01-15T10:30:00Z"
}
]Status Codes
| Code | Description |
|---|---|
200 | Success |
401 | Unauthorized -- invalid API credentials |
429 | Rate limit exceeded |
500 | Internal server error |