WarmablyWarmablyDOCS
Search docs⌘K
Dashboard
API Reference/Endpoints

Get current user

GET/api/v1/me

Returns the identity behind the API key used to authenticate the request.

Authentication

Send your personal API key as a bearer token. A missing, malformed or revoked key returns 401.

Response fields

FieldTypeDescription
user_idstringUUID of the account the key belongs to.
emailstring | nullEmail on the account, or null if none is on file.

Errors

·401 Unauthorized. The key is missing, malformed or has been rotated.
CredentialsRequired
AuthorizationBearer wm_live_••••••••
RequestTry it
curl https://api.warmably.com/api/v1/me \
  -H "Authorization: Bearer wm_live_..."
Response
200 OK
{
  "user_id": "242b0ae1-9c4f-4f2e-9b31-7a6c0d5e81aa",
  "email": "andy@example.com"
}
No key yet? Create one from Dashboard → API Keys.