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": {
      "trialActive": true,
      "entitlements": {},
      "usage": {},
      "subscriptionStatus": "<string>",
      "trialExpiresAt": "2023-11-07T05:31:56Z"
    },
    "rateLimits": {
      "requestsPerMinute": 123,
      "remaining": 123,
      "windowMs": 123
    }
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.devhelm.io/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

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

Response

OK

data
object
required

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