Skip to main content
GET
/
api
/
v1
/
auth
/
me
Get current API key identity
curl --request GET \
  --url https://api.devhelm.io/api/v1/auth/me \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "key": {
      "id": 123,
      "name": "<string>",
      "createdAt": "2023-11-07T05:31:56Z",
      "expiresAt": "2023-11-07T05:31:56Z",
      "lastUsedAt": "2023-11-07T05:31:56Z"
    },
    "organization": {
      "id": 123,
      "name": "<string>"
    },
    "plan": {
      "tier": "FREE",
      "subscriptionStatus": "<string>",
      "trialActive": true,
      "trialExpiresAt": "2023-11-07T05:31:56Z",
      "entitlements": {},
      "usage": {}
    },
    "rateLimits": {
      "requestsPerMinute": 123,
      "remaining": 123,
      "windowMs": 123
    }
  }
}

Authorizations

Authorization
string
header
required

API key (dh_live_...) or Auth0 JWT token

Response

200 - */*

OK

data
object

Identity, organization, plan, and rate-limit info for the authenticated API key