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
Parameters
Section titled “Parameters”This tool takes no parameters.
Returns
Section titled “Returns”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.
Example
Section titled “Example”Tool Call
Section titled “Tool Call”{ "name": "get_account_status", "arguments": {}}Response
Section titled “Response”{ "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.