Render Avatar Video (v1)
FreshPOSTPOST https://api.creatify.ai/api/lipsyncs/{id}/render/Render the final high-quality version of an avatar video. This produces the production-ready output.
Credit Cost
4 credits per 30 seconds of video
Path Parameters
| Name | Type | Required | Description |
|---|---|---|---|
id | string | Yes | The lipsync 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/lipsyncs/abc123/render/' \
-H 'X-API-ID: your-api-id' \
-H 'X-API-KEY: your-api-key'Response
json
{
"id": "abc123",
"status": "processing",
"output": null,
"created_at": "2024-01-15T10:30:00Z"
}When rendering completes:
json
{
"id": "abc123",
"status": "done",
"output": "https://cdn.creatify.ai/videos/abc123.mp4",
"created_at": "2024-01-15T10:30:00Z"
}Status Codes
| Code | Description |
|---|---|
200 | Render started |
401 | Unauthorized -- invalid API credentials |
402 | Insufficient credits |
404 | Lipsync task not found |
500 | Internal server error |
TIP
Always generate a preview first to verify the content before rendering. Rendering costs 4x more credits than previewing.
WARNING
Rendered videos are available at the output URL for a limited time. Download and store them in your own storage for long-term use.