Render Single Preview
FreshPOSTPOST https://api.creatify.ai/api/link_to_videos/render_single_preview/Render a single preview directly into a final video. This combines the preview and render steps when you already know which preview you want to finalize.
Request Body
| Name | Type | Required | Description |
|---|---|---|---|
id | string | Yes | The task ID with a completed preview |
Headers
| Header | Type | Required | Description |
|---|---|---|---|
X-API-ID | string | Yes | Your Creatify API ID |
X-API-KEY | string | Yes | Your Creatify API key |
Content-Type | string | Yes | application/json |
Example Request
bash
curl -X POST 'https://api.creatify.ai/api/link_to_videos/render_single_preview/' \
-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
| Code | Description |
|---|---|
200 | Render started |
401 | Unauthorized -- invalid API credentials |
402 | Insufficient credits |
404 | Task not found or preview not ready |
500 | Internal server error |
TIP
Use this endpoint when you have already reviewed the preview and want to render just that specific preview to final quality, rather than rendering all previews from a batch.