Skip to content

get_account_status

Return the current workspace’s model and active API-token counts with the limits that govern resource creation. Use this before a task that may create a model or API token to determine whether the current limit affects the task. Do not use it for account or payment administration.

read-only · idempotent

This tool takes no parameters.

Returns a structured object. Top-level fields:

  • model_count (integer)
  • model_limit (integer)
  • active_api_token_count (integer)
  • active_api_token_limit (integer)
  • reset_at (null)

See the response example below for the full payload shape.

{
"name": "get_account_status",
"arguments": {}
}
{
"model_count": 3,
"model_limit": 1000,
"active_api_token_count": 2,
"active_api_token_limit": 1000,
"reset_at": null
}
  • Module: Billing
  • Requires an authenticated Bridge Town session (OAuth) or an API token.