Get Api Me
Get the authenticated user’s profile and account balance.
Accepts both X-API-Key and Authorization: Bearer <jwt> authentication.
Useful as a quick connectivity test and to retrieve balance without
hitting the full /v1/account/balance endpoint.
The permissions field reflects the scope of the AUTHENTICATING key
(e.g. ["read", "trade"] or ["read"] for a free-tier / read-only
key), so a developer can inspect what their key can do without parsing
the keys endpoint. For Bearer-JWT (dashboard) auth there is no API key,
so the documented default scope is returned.
Per-user 5s Redis cache (override via ME_CACHE_TTL_S env). Set
TTL to 0 to disable. Cache de-amplifies the 2-DB-query body — the
pool was exhausting at c=50 sustained because every authed request
held a session for ~150-300ms (launch-eve perf RCA, F-2).
Authorizations
Issue from /v1/keys (or admin-issued for enterprise tier).
Headers
Response
Successful Response
Paper balance as a decimal string.
Rate-limit tier (free, pro, ...).
Scope of the authenticating API key (e.g. ["read", "trade"]). Bearer-JWT auth returns the default key scope.