Render AI Short
FreshPOSTPOST https://api.creatify.ai/api/ai_shorts/{id}/render/Render the final high-quality version of an AI short video.
Path Parameters
| Name | Type | Required | Description |
|---|---|---|---|
id | string | Yes | The AI shorts 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_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
| Code | Description |
|---|---|
200 | Render started |
401 | Unauthorized -- invalid API credentials |
402 | Insufficient credits |
404 | Task not found |
500 | Internal server error |
TIP
Download the rendered video promptly. Output URLs may expire after a period of time.