Skip to main content
POST
/
orgs
/
{org_id}
/
billing
/
overage
cURL
curl --request POST \
  --url https://api.timbal.ai/orgs/{org_id}/billing/overage \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "enabled": true,
  "cap_credits": 123
}
'
null
enabled turns usage-based overage on or off. cap_credits limits how many overage credits can accrue; omit it or set it to null for no cap.

Authorizations

Authorization
string
header
required

Timbal API key. Obtain your API key from the Timbal platform settings. See Authentication for more information.

Path Parameters

org_id
string
required

Body

application/json
enabled
boolean
required
cap_credits
integer<int64> | null

Max overage credits the user allows (null = unlimited).

Response

Overage settings updated