Skip to content

Render AI Editing

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

Render the final high-quality version of the AI-edited video.

Credit Cost

4 credits per 30 seconds of video

Path Parameters

NameTypeRequiredDescription
idstringYesThe AI editing 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_editing/edit-001/render/' \
  -H 'X-API-ID: your-api-id' \
  -H 'X-API-KEY: your-api-key'

Response

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

When rendering completes:

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

Status Codes

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

TIP

Always preview first, then render. This saves credits by catching issues early.