Skip to main content
GET
/
v1
/
videos
/
captions
/
templates
List Caption Templates
curl --request GET \
  --url https://api.mirage.app/v1/videos/captions/templates \
  --header 'x-api-key: <api-key>'
{
  "data": [
    {
      "id": "<string>",
      "name": "<string>",
      "created_at": 123,
      "object": "caption_template",
      "preview_url": "https://captions-cdn.xyz/studio-assets/captions-style-previews/1FA3A381-5DDF-4ECD-936B-63D7CF16DEB0.mp4"
    }
  ],
  "has_more": true,
  "object": "list"
}

Authorizations

x-api-key
string
header
required

API key for authentication.

Query Parameters

limit
integer
default:20

Max number of items to return

Required range: 1 <= x <= 100
after
string | null

Return items strictly after this template ID

Response

200 - application/json

Returns a paginated list of available caption templates

Paginated list of caption templates

data
MACaptionTemplate · object[]
required

List of caption templates

has_more
boolean
required

Whether there are more templates after this page

object
string
default:list
Allowed value: "list"