Skip to main content
GET
/
api
/
v1
/
me
Get current user
curl --request GET \
  --url https://api.getarca.app/api/v1/me \
  --header 'Authorization: Bearer <token>'
{
  "id": 12,
  "email": "alice@example.com",
  "name": "Alice",
  "avatar_url": "https://cdn.example.com/avatars/alice.png",
  "created_at": "2026-01-10T09:00:00.000Z"
}
Requires the users:read scope.

Response

id
number
required
Unique user identifier.
email
string
required
Email address.
name
string
required
Display name.
avatar_url
string | null
Profile picture URL. null if no avatar is set.
created_at
string
required
UTC ISO-8601 timestamp of when the account was created.
{
  "id": 12,
  "email": "alice@example.com",
  "name": "Alice",
  "avatar_url": "https://cdn.example.com/avatars/alice.png",
  "created_at": "2026-01-10T09:00:00.000Z"
}