get
/v4/auth/me
Get authenticated user information including address, profile, and authentication status.
Responses
200Response for status 200
Schema
object
addressstringrequired
User identity — wallet address, or `google:<email>` for Google sign-inauthenticatedAtnumberrequired
Unix timestamp when the JWT was issuedexpiresAtnumberrequired
Unix timestamp when the JWT expirestagsstring[]required
Tags associated with the usertiernumberrequired
Creator tier levelproviderenumrequired
Auth method backing this session — derived from the JWT `provider` claimWALLETGOOGLElinkedGooglebooleanrequired
Whether a Google identity is linked to this account (`User.googleSub`)emailstringDisplay email — Google account email when knownExample
{
"address": "string",
"authenticatedAt": 0,
"expiresAt": 0,
"tags": [
"string"
],
"tier": 0,
"provider": "WALLET",
"linkedGoogle": false,
"email": "string"
}get
https://api.merkl.xyz/v4/auth/mecurl -X GET "https://api.merkl.xyz/v4/auth/me"