/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 theAuthorization header. No specific scope is required — any active key for an active organization will work.
Request
Response 200
Response fields
Your organization’s unique ID.
Your organization name.
Account standing. Either
active or suspended.Plan identifier. One of
free, starter, pro, or enterprise.The maximum number of requests you can make in any rolling one-minute window.
The maximum number of requests you can make in any single day.
Your total monthly request allowance. Returns
null for unmetered Enterprise plans.The maximum number of items you may include in a single batch request.
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.The human-readable name you assigned to this API key when it was created.
The last four characters of the key’s public prefix, useful for identifying which key is in use without exposing the secret.
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.The number of metered requests you have made in the current calendar month.
Your monthly quota for the current period, mirroring
data.plan.monthly_quota.Seconds remaining until your monthly quota counter resets. At
1 209 600 that is exactly 14 days.Error responses
| Status | error.code | When it occurs |
|---|---|---|
401 | unauthorized | The Authorization header is missing, the key is invalid, revoked, or expired. |
403 | account_inactive | Your organization or client account is suspended. |