Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
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>"
}This endpoint returns information about the logged in user 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>"
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.