Get current workspace credit state
Returns the workspace’s monthly usage counter against the included bundle and on-demand cap. The system is metered, not pre-paid — there is no balance pool to draw down.
Use remaining_included_credits and remaining_on_demand_credits to
gate calls before hitting a 503.
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Response
Current credit state.
Cap on overage above the included bundle. null means uncapped.
SDKs that cannot model nullable numbers cleanly should branch on
on_demand_uncapped instead.
true when there is no cap on overage (on_demand_credit_limit
is null). Always-present boolean companion for strict typed SDKs.
Credits remaining before the on-demand cap is hit. null when
on_demand_uncapped is true.