Cut.ProDocs
Renders

Get render quota

Returns the workspace's current render usage and plan-level render limits. Use this before kicking off a render to avoid being throttled — if usage.total_pending >= usage.max_concurrent, a new render will be rejected with 429.

X-Api-Key<token>

In: header

Response Body

application/json

GET
/renders/limits
curl -X GET "https://example.com/renders/limits"
{  "usage": {    "active_count": 0,    "queued_count": 0,    "total_pending": 0,    "max_concurrent": 0  },  "plan": {    "video_quality": "string",    "watermark": true,    "priority_processing": true,    "max_concurrent_renders": 0,    "render_expiry_hours": 0  }}