GET
/
users
/
address
/
{address}
curl --request GET \
  --url https://api-staging.boost.xyz/users/address/{address} \
  --header 'Authorization: Bearer <token>'
{
  "user": "<string>",
  "id": "<string>",
  "address": "<string>",
  "email": "<string>",
  "name": "<string>",
  "emailRegistered": true,
  "twitterUsername": "<string>",
  "notificationPreferences": {
    "boostStarted": true,
    "boostCompleted": true
  },
  "joined": "<string>",
  "lastActive": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

address
string
required

Response

200
application/json

Success

The response is of type object.