GET /account/billing
Explain whether your account can start sessions.
TypeScript SDKThe npm client, generated from the API spec.Python SDKThe PyPI client, sync and async.
| Method | Path |
|---|---|
| GET | /v1/account/billing |
Uses the same account gate as session admission, including credit, contact email, and personal Claude subscription eligibility. Scoped spend limits are reported separately by /v1/account/budget.
curl "https://api.ellipsis.dev/v1/account/billing" \
-H "Authorization: Bearer $ELLIPSIS_API_KEY"import os
from ellipsis import Ellipsis
client = Ellipsis(api_key=os.environ["ELLIPSIS_API_TOKEN"])
result = client.account.billing.status()
print(result)import { Ellipsis } from '@ellipsis-dev/sdk';
const client = new Ellipsis({
apiKey: process.env.ELLIPSIS_API_TOKEN!,
});
const result = await client.account.billing.status();
console.log(result);Request
Response
Example response · 200
{
"workflows_block_reason": "canceled"
}