get_account_status
Return current-period usage counters and subscription status for the authenticated tenant (bt-p1opf.9: merges the former get_usage and get_subscription tools). Usage: model count vs quota, API token count vs quota, and model-run minutes consumed in the current UTC calendar month. Subscription: plan name, Stripe subscription status, current billing period end, and whether the subscription is set to cancel at period end.
read-only · idempotent
Parameters
Section titled “Parameters”This tool takes no parameters.
Returns
Section titled “Returns”Returns a structured object. Top-level fields:
models_used(integer)models_quota(integer)tokens_used(integer)tokens_quota(integer)run_minutes_used_this_month(number)run_minutes_quota(null)reset_date_iso(string)plan(string)stripe_subscription_status(string)current_period_end_iso(string)cancel_at_period_end(boolean)
See the response example below for the full payload shape.
Example
Section titled “Example”Tool Call
Section titled “Tool Call”{ "name": "get_account_status", "arguments": {}}Response
Section titled “Response”{ "models_used": 3, "models_quota": 10, "tokens_used": 2, "tokens_quota": 5, "run_minutes_used_this_month": 12.5, "run_minutes_quota": null, "reset_date_iso": "2026-06-01T00:00:00+00:00", "plan": "pro", "stripe_subscription_status": "active", "current_period_end_iso": "2026-06-01T00:00:00+00:00", "cancel_at_period_end": false}- Module:
Billing - Requires authentication via API token or Auth0 JWT.