GET
/
v1
/
templates
/
{id}
Get template details
curl --request GET \
  --url https://api.getbluma.com/api/v1/templates/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "name": "<string>",
  "description": "<string>",
  "category": "<string>",
  "duration_range": {
    "min": 123,
    "max": 123
  },
  "credits_per_video": 123,
  "thumbnail_url": "<string>",
  "example_video_url": "<string>",
  "supported_resolutions": [
    "720p"
  ],
  "requires_context": {
    "prompt": true,
    "brand_id": true,
    "custom_data": true
  }
}

Authorizations

Authorization
string
header
required

Use your API key in the format: Bearer bluma_live_your_api_key_here

Response

Template details

id
string

Template identifier

name
string

Human-readable template name

description
string

Template description

category
string

Template category

duration_range
object
credits_per_video
number

Base credit cost

thumbnail_url
string<uri> | null
example_video_url
string<uri> | null
supported_resolutions
enum<string>[]
requires_context
object