JsonCutDocs
V2 APIEndpointsTemplates

List templates

List templates. Published, version-pinned projects with typed inputs for repeatable image and video generation. Required API key scopes: `templates:read`.

GET
/api/v2/templates

Authorization

apiKeyAuth

Query Parameters

cursor?string

Opaque cursor from the previous page

limit?integer

Page size

Range1 <= value <= 100
Default50

Response Body

application/json

application/json

application/json

application/json

application/json

curl -X GET "https://example.com/api/v2/templates"
{  "success": true,  "data": [    {      "id": "template_01J",      "name": "Launch template",      "description": "Reusable launch artwork",      "compositionKind": "image",      "category": "marketing",      "duration": 1,      "aspectRatio": "1:1",      "thumbnail": "https://api.jsoncut.com/media/template_01J/thumbnail",      "variables": [        {          "id": "title",          "label": "Title",          "type": "string",          "default": "Launch faster"        }      ],      "sourceProjectId": "project_01J",      "featured": false,      "publishedVersion": 2,      "version": 2    }  ]}