Skip to content

Create Aurora Video

FreshPOST
POST 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

NameTypeRequiredDescription
image_urlstringYesURL of the source image to animate

Headers

HeaderTypeRequiredDescription
X-API-IDstringYesYour Creatify API ID
X-API-KEYstringYesYour Creatify API key
Content-TypestringYesapplication/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

CodeDescription
201Task created successfully
400Bad request -- invalid image URL or format
401Unauthorized -- invalid API credentials
402Insufficient credits
429Rate limit exceeded
500Internal 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.