Skip to main content
GET
/
api
/
v1
/
auth
/
check
Check API key identity
curl --request GET \
  --url https://studio.eigenpal.com/api/v1/auth/check \
  --header 'Authorization: Bearer <token>'
{
  "ok": true,
  "tenantId": "<string>",
  "tenantSlug": "<string>",
  "tenantName": "<string>",
  "userId": "<string>",
  "keyId": "<string>",
  "email": "<string>",
  "name": "<string>",
  "scope": [
    "<string>"
  ],
  "wildcardGranted": true
}

Authorizations

Authorization
string
header
required

API key issued from Settings → API Keys. Pass as Authorization: Bearer <key>.

Response

Authenticated identity

ok
boolean
required
tenantId
string
required
tenantSlug
string
required
tenantName
string | null
required
userId
string | null
required
keyId
string
required
email
string | null
required
name
string | null
required
scope
string[]
required
wildcardGranted
boolean
required