get

/v4/auth/me

Get authenticated user information including address, profile, and authentication status.

Responses

200
Response for status 200
Schema
object
addressstring
required
User identity — wallet address, or `google:<email>` for Google sign-in
authenticatedAtnumber
required
Unix timestamp when the JWT was issued
expiresAtnumber
required
Unix timestamp when the JWT expires
tagsstring[]
required
Tags associated with the user
tiernumber
required
Creator tier level
providerenum
required
Auth method backing this session — derived from the JWT `provider` claimWALLETGOOGLE
linkedGoogleboolean
required
Whether a Google identity is linked to this account (`User.googleSub`)
emailstringDisplay email — Google account email when known
Example
{
  "address": "string",
  "authenticatedAt": 0,
  "expiresAt": 0,
  "tags": [
    "string"
  ],
  "tier": 0,
  "provider": "WALLET",
  "linkedGoogle": false,
  "email": "string"
}
get
https://api.merkl.xyz/v4/auth/me
Merkl API
curl -X GET "https://api.merkl.xyz/v4/auth/me"