v1

latestOpenAPI 3.0.0Proprietary2026-08-062711471.0 MB
Account

Get current identity

Returns the account and (for USER keys) user attached to the API key. Use this to validate a key and inspect the calling identity.

get/public/v1/me

Response

Identity attached to the API key

oktrue required

Example response

{
  "ok": true,
  "data": {
    "account": {
      "id": 1234,
      "name": "Acme Inc.",
      "namespace": "acme"
    },
    "user": {
      "id": 56,
      "email": "you@acme.com"
    }
  }
}