Create Aurora Video
FreshPOSTPOST https://api.creatify.ai/api/aurora/Create a video from a single image using Aurora. Aurora animates static images into dynamic video content.
Request Body
| Name | Type | Required | Description |
|---|---|---|---|
image_url | string | Yes | URL of the source image to animate |
Headers
| Header | Type | Required | Description |
|---|---|---|---|
X-API-ID | string | Yes | Your Creatify API ID |
X-API-KEY | string | Yes | Your Creatify API key |
Content-Type | string | Yes | application/json |
Example Request
bash
curl -X POST 'https://api.creatify.ai/api/aurora/' \
-H 'X-API-ID: your-api-id' \
-H 'X-API-KEY: your-api-key' \
-H 'Content-Type: application/json' \
-d '{
"image_url": "https://example.com/product-photo.jpg"
}'Response
json
{
"id": "aurora-001",
"status": "pending",
"image_url": "https://example.com/product-photo.jpg",
"created_at": "2024-01-15T10:30:00Z"
}Status Codes
| Code | Description |
|---|---|
201 | Task created successfully |
400 | Bad request -- invalid image URL or format |
401 | Unauthorized -- invalid API credentials |
402 | Insufficient credits |
429 | Rate limit exceeded |
500 | Internal server error |
TIP
For best results, use high-resolution images with clear subjects. Aurora works particularly well with product images and portraits.
WARNING
The image URL must be publicly accessible. Private or authenticated URLs will fail.