Skip to content

Render Custom Template Job

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

Render the final high-quality version of a custom template job.

Path Parameters

NameTypeRequiredDescription
idstringYesThe template job 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/custom_template_jobs/job-001/render/' \
  -H 'X-API-ID: your-api-id' \
  -H 'X-API-KEY: your-api-key'

Response

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

When rendering completes:

json
{
  "id": "job-001",
  "status": "done",
  "output": "https://cdn.creatify.ai/template-jobs/job-001.mp4"
}

Status Codes

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