Skip to main content
GET
/
v1
/
accounts
/
info
Get account information
curl --request GET \
  --url https://data.otterly.ai/v1/accounts/info \
  --header 'Authorization: Bearer <token>'
{
  "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
}

Authorizations

Authorization
string
header
required

Provide your API key as a Bearer token: Authorization: Bearer YOUR_API_KEY.

Response

Account information for the authenticated team.

subscriptionPlan
enum<string> | null
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.

Available options:
trial,
lite,
standard,
premium,
custom,
null
Example:

"standard"

subscriptionEndDate
string<date-time> | null
required

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

Example:

"2026-06-19T00:00:00.000Z"

promptsUsedCount
integer
required
Required range: x >= 0
Example:

142

promptsMaxCount
integer
required
Required range: x >= 0
Example:

500

geoAuditUsedCount
integer
required
Required range: x >= 0
Example:

7

geoAuditMaxCount
integer
required
Required range: x >= 0
Example:

25

apiRequestsUsedCount
integer
required
Required range: x >= 0
Example:

38

apiRequestsMaxCount
integer
required
Required range: x >= 0
Example:

1500

apiRequestsPeriodEnd
string | null
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.

Example:

"2026-06-01"

mcpRequestsUsedCount
integer
required
Required range: x >= 0
Example:

12

mcpRequestsMaxCount
integer | null
required

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

Required range: x >= 0
Example:

2000