v1

latestOpenAPI 3.0.02026-07-222980136.7 KB
Accounts

Get account information

Returns the authenticated team's subscription plan, end date, and current period usage/limits for prompts, GEO audits, public API requests, and MCP tool calls.

get/v1/accounts/info

Response

Account information for the authenticated team.

subscriptionPlan'trial' | 'lite' | 'standard' | 'premium' | 'custom' | 'null' nullable required

The team's subscription plan. "trial" while the team is in trial; "custom" for teams whose plan is not one of the standard tiers.

subscriptionEndDatestring date-time nullable required

When the current subscription (or trial) ends. Null when no end date is set.

promptsUsedCountinteger required
promptsMaxCountinteger required
geoAuditUsedCountinteger required
geoAuditMaxCountinteger required
apiRequestsUsedCountinteger required
apiRequestsMaxCountinteger required
apiRequestsPeriodEndstring nullable required

End of the current Public API billing period (YYYY-MM-DD, UTC). For custom plans this is the first day of the next UTC month, clipped to the subscription end. Null when no usable plan is active.

mcpRequestsUsedCountinteger required
mcpRequestsMaxCountinteger nullable required

Max MCP tool calls per billing period. Null = unlimited (e.g. Enterprise); 0 = MCP disabled.

Example response

{
  "subscriptionPlan": "standard",
  "subscriptionEndDate": "2026-06-19T00:00:00.000Z",
  "promptsUsedCount": 142,
  "promptsMaxCount": 500,
  "geoAuditUsedCount": 7,
  "geoAuditMaxCount": 25,
  "apiRequestsUsedCount": 38,
  "apiRequestsMaxCount": 1500,
  "apiRequestsPeriodEnd": "2026-06-01",
  "mcpRequestsUsedCount": 12,
  "mcpRequestsMaxCount": 2000
}
All 29 operations