General
GET
/stats

How much of the plan is used right now: the number of videos, automations and clips in the library, generations and renders started in the last 30 days against their monthly ceiling, storage, credits, and the per-video duration and render-time caps. since is the start of the rolling window the counters cover.

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/stats"
{  "data": {    "plan": "pro",    "videos": 37,    "automations": {      "used": 2,      "limit": 5    },    "clips": 118,    "generations": {      "used": 24,      "limit": 100,      "since": "2026-07-09T11:42:03.000Z"    },    "renders": {      "used": 19,      "limit": 100,      "since": "2026-07-09T11:42:03.000Z"    },    "storage": {      "used": 3187441664,      "limit": 21474836480    },    "credits": {      "tokens": 42500000,      "credits": 42500    },    "maxRenderSeconds": 900,    "maxDurationSeconds": 900  }}