Reference
GET
/reference/credit-costs

What every billable feature charges, in both units (1 credit is 1000 tokens) and per what: a minute of video, an image, or a single generation. Use it to estimate a job before queuing it.

Authorization

bearerAuth
AuthorizationBearer <token>

An API key created under Settings > API & Webhooks. Keys start with sf_live_.

In: header

Response Body

application/json

application/json

curl -X GET "https://example.com/reference/credit-costs"
{  "data": [    {      "label": "Video render",      "tokens": 1800,      "credits": 1.8,      "per": "minute",      "note": null    },    {      "label": "Subtitles & B-rolls",      "tokens": 1200,      "credits": 1.2,      "per": "minute",      "note": null    },    {      "label": "AI image",      "tokens": 1000,      "credits": 1,      "per": "image",      "note": null    },    {      "label": "Script or description",      "tokens": 80,      "credits": 0.08,      "per": "generation",      "note": null    },    {      "label": "Premium voice",      "tokens": 3000,      "credits": 3,      "per": "minute",      "note": "on top of the standard voice"    }  ]}