GET
/
me
Get current user
curl --request GET \
  --url http://localhost:4000/me \
  --header 'Authorization: Bearer <token>'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "email": "jsmith@example.com",
  "dynamicUserId": "<string>",
  "handle": "<string>",
  "createdAt": "2023-11-07T05:31:56Z",
  "lastLoginAt": "2023-11-07T05:31:56Z",
  "status": "active",
  "tier": "bronze"
}

Authorizations

Authorization
string
header
required

Dynamic authentication JWT token

Response

Current user information

id
string<uuid>
email
string<email>
dynamicUserId
string
handle
string

Custom username/handle

createdAt
string<date-time>
lastLoginAt
string<date-time>
status
enum<string>
Available options:
active,
inactive,
suspended
tier
enum<string>

User tier based on activity and referrals

Available options:
bronze,
silver,
gold,
platinum