Skip to content

Render Avatar Video (v2)

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

Render the final high-quality version of a v2 multi-scene avatar video. This produces the production-ready output with all scenes composited.

Credit Cost

4 credits per 30 seconds of video

Path Parameters

NameTypeRequiredDescription
idstringYesThe lipsync 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/lipsyncs/v2-abc123/render/' \
  -H 'X-API-ID: your-api-id' \
  -H 'X-API-KEY: your-api-key'

Response

json
{
  "id": "v2-abc123",
  "status": "processing",
  "output": null,
  "created_at": "2024-01-15T10:30:00Z"
}

When rendering completes:

json
{
  "id": "v2-abc123",
  "status": "done",
  "output": "https://cdn.creatify.ai/videos/v2-abc123.mp4",
  "created_at": "2024-01-15T10:30:00Z"
}

Status Codes

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

TIP

The recommended workflow is: Create -> Preview -> Verify -> Render. This saves credits by catching issues before the expensive render step.

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.