Skip to content

Render AI Short

FreshPOST
POST https://api.creatify.ai/api/ai_shorts/{id}/render/

Render the final high-quality version of an AI short video.

Path Parameters

NameTypeRequiredDescription
idstringYesThe AI shorts task ID

Headers

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

Example Request

bash
curl -X POST 'https://api.creatify.ai/api/ai_shorts/short-001/render/' \
  -H 'X-API-ID: your-api-id' \
  -H 'X-API-KEY: your-api-key'

Response

json
{
  "id": "short-001",
  "status": "processing",
  "output": null
}

When rendering completes:

json
{
  "id": "short-001",
  "status": "done",
  "output": "https://cdn.creatify.ai/shorts/short-001.mp4"
}

Status Codes

CodeDescription
200Render started
401Unauthorized -- invalid API credentials
402Insufficient credits
404Task not found
500Internal server error

TIP

Download the rendered video promptly. Output URLs may expire after a period of time.