curl --request GET \
--url https://api.other.page/v1/account \
--header 'Authorization: Bearer <token>'
{
"id": "<string>",
"wallet": "<string>",
"linkedWallets": [
"<string>"
],
"twitter": {
"id": "<string>",
"name": "<string>",
"username": "<string>"
},
"discord": {
"id": "<string>",
"username": "<string>",
"global_name": "<string>",
"avatar": "<string>"
},
"email": "<string>",
"connectedAvatar": {
"id": "<string>",
"name": "<string>",
"title": "<string>",
"primary": true,
"bio": "<string>",
"token": {
"id": "<string>",
"collectionName": "<string>",
"name": "<string>",
"kind": "erc721",
"chainId": "1",
"contract": "<string>",
"tokenId": "<string>",
"image": "<string>",
"uri": "<string>",
"rarity": "<string>",
"rarityRank": 123,
"description": "<string>",
"externalUrl": "<string>",
"animationUrl": "<string>",
"traits": [
{
"key": "<string>",
"type": "<string>",
"value": "<string>",
"tokenCount": 123,
"rarity": 123,
"rarityPercent": 123
}
],
"quantity": 123,
"burnDate": "2023-11-07T05:31:56Z",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
}
}
}
Retrieve basic account information.
Additional available scopes include: email
, profile
, wallets.read
, twitter.read
, discord.read
, email.read
.
curl --request GET \
--url https://api.other.page/v1/account \
--header 'Authorization: Bearer <token>'
{
"id": "<string>",
"wallet": "<string>",
"linkedWallets": [
"<string>"
],
"twitter": {
"id": "<string>",
"name": "<string>",
"username": "<string>"
},
"discord": {
"id": "<string>",
"username": "<string>",
"global_name": "<string>",
"avatar": "<string>"
},
"email": "<string>",
"connectedAvatar": {
"id": "<string>",
"name": "<string>",
"title": "<string>",
"primary": true,
"bio": "<string>",
"token": {
"id": "<string>",
"collectionName": "<string>",
"name": "<string>",
"kind": "erc721",
"chainId": "1",
"contract": "<string>",
"tokenId": "<string>",
"image": "<string>",
"uri": "<string>",
"rarity": "<string>",
"rarityRank": 123,
"description": "<string>",
"externalUrl": "<string>",
"animationUrl": "<string>",
"traits": [
{
"key": "<string>",
"type": "<string>",
"value": "<string>",
"tokenCount": 123,
"rarity": 123,
"rarityPercent": 123
}
],
"quantity": 123,
"burnDate": "2023-11-07T05:31:56Z",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
The response is of type object
.