Quota

Check credit balance and plan status

Returns the current plan, remaining credits, and billing status for the authenticated account. Read-only — never consumes a credit.

  • Works even when the credit pool is exhausted. Unlike other endpoints, /quota is exempt from the "insufficient credits" block, so you can always check your balance.
  • Response payload is identical to the MCP tool get_quota_info.
get/quota

Response

Quota returned successfully

successboolean required

Always true for 200 responses

Example response

{
  "success": true,
  "data": {
    "plan": "Professional",
    "remainingCredits": 4500,
    "billingStatus": "active",
    "userId": "123e4567-e89b-12d3-a456-426614174000",
    "email": "usuario@exemplo.com"
  }
}

Changes

No recorded changes to this endpoint across all 2 revisions of this API.