Render AI Editing
FreshPOSTPOST 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
| Name | Type | Required | Description |
|---|---|---|---|
id | string | Yes | The AI editing task ID |
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 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
| Code | Description |
|---|---|
200 | Render started |
401 | Unauthorized -- invalid API credentials |
402 | Insufficient credits |
404 | Task not found |
500 | Internal server error |
TIP
Always preview first, then render. This saves credits by catching issues early.