Skip to main content
GET
/
auth
/
me
Get the authenticated user
curl --request GET \
  --url https://api.trepa.app/auth/me
{
  "id": "<string>",
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z",
  "last_seen_at": "2023-11-07T05:31:56Z",
  "username": "<string>",
  "has_seen_tour": true,
  "role": "USER",
  "wallet_address": "<string>",
  "invite_id": "<string>",
  "avatar_id": "<string>",
  "email": "<string>",
  "twitter_username": "<string>"
}

Documentation Index

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

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

Response

The current user has been retrieved.

id
string
required
created_at
string<date-time>
required
updated_at
string<date-time>
required
last_seen_at
string<date-time>
required
username
string
required
has_seen_tour
boolean
required
role
enum<string>
required
Available options:
USER,
ADMIN
wallet_address
string
required
invite_id
string | null
avatar_id
string | null
email
string
twitter_username
string
Last modified on May 4, 2026