Skip to content

Render URL to Video

FreshPOST
POST https://api.creatify.ai/api/link_to_videos/render/

Render the final high-quality version of a URL-to-video task from its preview.

Credit Cost

4 credits per 30 seconds of video

Request Body

NameTypeRequiredDescription
idstringYesThe task ID to render

Headers

HeaderTypeRequiredDescription
X-API-IDstringYesYour Creatify API ID
X-API-KEYstringYesYour Creatify API key
Content-TypestringYesapplication/json

Example Request

bash
curl -X POST 'https://api.creatify.ai/api/link_to_videos/render/' \
  -H 'X-API-ID: your-api-id' \
  -H 'X-API-KEY: your-api-key' \
  -H 'Content-Type: application/json' \
  -d '{
    "id": "ltv-001"
  }'

Response

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

When rendering completes:

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

Status Codes

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

TIP

Rendering produces the final production-quality video. Always verify with a preview first.