Skip to main content
GET
/
templates
List templates
curl --request GET \
  --url https://api.cut.pro/api/v1/templates \
  --header 'X-Api-Key: <api-key>'
{
  "templates": [
    {
      "id": "<string>",
      "name": "<string>",
      "description": "<string>",
      "category": "<string>",
      "aspect_ratio": "<string>",
      "auto_add_captions": true,
      "is_public": true,
      "thumbnail_url": "<string>",
      "created_at": "<string>"
    }
  ],
  "pagination": {
    "current_page": 123,
    "total_pages": 123,
    "total_count": 123,
    "has_next_page": true,
    "has_previous_page": true,
    "limit": 123
  }
}

Documentation Index

Fetch the complete documentation index at: https://cut.pro/docs/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

X-Api-Key
string
header
required

Query Parameters

page
number

Page number (default: 1)

Required range: x >= 1
limit
number

Items per page (default: 20, max: 100)

Required range: 1 <= x <= 100
filter
enum<string>
Available options:
mine,
public
sort
enum<string>
Available options:
most_recent,
name

Response

200 - application/json

Response for status 200

templates
object[]
required
pagination
object
required
Last modified on May 27, 2026