JsonCutDocs
V2 APIEndpointsTemplates

Queue a render directly from a pinned template version without creating a project

Queue a render directly from a pinned template version without creating a project. Published, version-pinned projects with typed inputs for repeatable image and video generation. Required API key scopes: `templates:render`.

POST
/api/v2/templates/{id}/renders

Authorization

apiKeyAuth

Path Parameters

id*string

Resource identifier

Request Body

application/json

Response Body

application/json

application/json

application/json

application/json

application/json

application/json

application/json

application/json

application/json

application/json

curl -X POST "https://example.com/api/v2/templates/string/renders" \  -H "Content-Type: application/json" \  -d '{    "values": {      "title": "A better launch"    },    "kind": "image",    "quality": "high",    "format": "png",    "transparent": true  }'
{  "success": true,  "data": {    "id": "render_01J",    "projectId": "",    "projectName": "Launch template",    "kind": "image",    "status": "queued",    "progress": 0,    "phase": "queued",    "queuePosition": 1,    "createdAt": "2026-08-25T09:15:00.000Z",    "format": "png",    "outputWidth": 1080,    "outputHeight": 1080,    "transparent": true,    "source": "template"  }}