Skip to main content
GET
/
auth
/
me
Get current user
curl --request GET \
  --url https://api.buildwithtrace.com/api/v2/auth/me \
  --header 'Authorization: Bearer <token>'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "email": "jsmith@example.com",
  "full_name": "<string>",
  "plan": "free",
  "avatar_url": "<string>",
  "created_at": "2023-11-07T05:31:56Z"
}

Authorizations

Authorization
string
header
required

JWT access token. Get one via POST /auth/login or from the Trace app (Settings → API Token). Tokens expire after 1 hour.

Response

Current user

id
string<uuid>
email
string<email>
full_name
string
plan
enum<string>
Available options:
free,
trial,
pro,
ultra,
team,
enterprise
avatar_url
string<uri>
created_at
string<date-time>