Get Custom Template Job
FreshGETGET https://api.creatify.ai/api/custom_template_jobs/{id}/Retrieve a specific custom template job by its ID.
Path Parameters
| Name | Type | Required | Description |
|---|---|---|---|
id | string | Yes | The template job 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 GET 'https://api.creatify.ai/api/custom_template_jobs/job-001/' \
-H 'X-API-ID: your-api-id' \
-H 'X-API-KEY: your-api-key'Response
json
{
"id": "job-001",
"template_id": "template-001",
"status": "done",
"parameters": {
"headline": "Introducing Our Latest Product",
"product_image": "https://example.com/product.jpg",
"cta_text": "Shop Now"
},
"output": "https://cdn.creatify.ai/template-jobs/job-001.mp4",
"preview": "https://cdn.creatify.ai/template-jobs/job-001-preview.mp4",
"created_at": "2024-01-15T10:30:00Z",
"updated_at": "2024-01-15T10:40:00Z"
}Response Fields
| Field | Type | Description |
|---|---|---|
id | string | Unique job identifier |
template_id | string | Template used |
status | string | Job status: pending, processing, done, failed |
parameters | object | Parameter values used |
output | string | Final rendered video URL |
preview | string | Preview video URL |
created_at | string | ISO 8601 timestamp |
updated_at | string | ISO 8601 timestamp |
Status Codes
| Code | Description |
|---|---|
200 | Success |
401 | Unauthorized -- invalid API credentials |
404 | Job not found |
500 | Internal server error |