Skip to main content
The /me endpoint returns everything you need to know about your API access — your organization, plan limits, key scopes, and how much of your monthly quota you’ve consumed. Call it whenever you want to verify your key is valid, confirm which scopes are attached to it, or check how much of your quota remains before the next reset.

Endpoint

Authentication

Send any valid bearer key in the Authorization header. No specific scope is required — any active key for an active organization will work.
If your organization is suspended you will receive a 403 account_inactive response even with a valid key. Check data.organization.status in a successful response to confirm your account is in good standing.

Request

Response 200

Response fields

int
Your organization’s unique ID.
string
Your organization name.
string
Account standing. Either active or suspended.
string
Plan identifier. One of free, starter, pro, or enterprise.
int
The maximum number of requests you can make in any rolling one-minute window.
int
The maximum number of requests you can make in any single day.
int
Your total monthly request allowance. Returns null for unmetered Enterprise plans.
int
The maximum number of items you may include in a single batch request.
int
The maximum limit value accepted by list endpoints. Requests for a larger page size are silently capped to this value — always read meta.pagination.per_page to confirm the actual page size used.
string
The human-readable name you assigned to this API key when it was created.
string
The last four characters of the key’s public prefix, useful for identifying which key is in use without exposing the secret.
array
The list of permission scopes assigned to this key (e.g. games.read, consoles.read, demand-intent.read). A request to an endpoint whose required scope is not present returns 403 insufficient_scope.
int
The number of metered requests you have made in the current calendar month.
int
Your monthly quota for the current period, mirroring data.plan.monthly_quota.
int
Seconds remaining until your monthly quota counter resets. At 1 209 600 that is exactly 14 days.

Error responses