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
}

Documentation Index

Fetch the complete documentation index at: https://docs.otterly.ai/llms.txt

Use this file to discover all available pages before exploring further.

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