Set Spend Limit
Set a per-user spend limit override.
Upsert keyed on (scope, period): setting a limit that already exists overwrites it in place. Only scope.type: "user" is accepted; seat-tier, group, and organization-level defaults are configured in claude.ai.
post/v1/organizations/spend_limits?beta=true
Request body
Example request
{
"amount": "50000",
"period": "monthly",
"scope": {
"user_id": "user_01WCz1FkmYMm4gnmykNKUu3Q"
}
}Response
Successful Response
Example response
{
"amount": "50000",
"currency": "USD",
"period": "monthly",
"scope": {
"user_id": "user_01WCz1FkmYMm4gnmykNKUu3Q"
}
}