Skip to content

GET /v1/usage

Returns your team’s current render usage, quota limits, and billing period.

Endpoint:

GET /v1/usage
Authorization: Bearer bp_sk_live_YOUR_KEY

Status: 200 OK

{
"period": {
"start": "2026-03-01T00:00:00.000Z",
"end": "2026-03-31T23:59:59.999Z"
},
"renders": {
"live": 847,
"test": 42
},
"quota": {
"limit": 10000,
"remaining": 9153,
"hardCap": true
},
"plan": "starter"
}
FieldTypeDescription
period.startstringStart of the current billing period (ISO 8601).
period.endstringEnd of the current billing period (ISO 8601).
renders.livenumberLive renders used this period.
renders.testnumberTest renders this period (do not count against quota).
quota.limitnumberMonthly render limit. -1 means unlimited.
quota.remainingnumberRenders remaining before hitting the limit.
quota.hardCapbooleantrue if renders are rejected at the limit; false if they continue with a warning.
planstringCurrent plan: "dev", "starter", "pro", or "enterprise".
Terminal window
curl -H "Authorization: Bearer bp_sk_live_YOUR_KEY" \
https://api.binderypress.dev/v1/usage
StatusCodeCause
401AUTH_REQUIREDMissing or invalid API key.