Account
Get account tokens
API Reference
Connect
Account
Communities
- GETGet communities
- GETGet a community
- GETGet community members
- POSTAdd community member
- POSTBulk add community members
- GETGet community member
- GETGet community member tokens
- GETGet community member badges
- GETGet community tags
- POSTCreate a community tag
- GETGet a community tag
- DELDelete a community tag
- GETGet members by tag
- POSTAdd a tag to community members
- DELRemove tag from a member
Community Badges
- GETGet badges
- POSTCreate Badge
- GETGet badge
- DELDelete badge
- PATCHUpdate badge
- GETGet badge rewards
- POSTCreate badge Reward
- GETGet badge reward
- DELDelete badge reward
- PATCHUpdate badge reward
- GETGet badge attributions
- POSTCreate badge attribution
- PATCHUpdate badge attribution
- GETGet a badge attribution by metadata property
- GETGet a badge attribution
- GETGet badge leaderboard
- GETGenerate badge attribution code
Community Collections
Community Payments
Metadata
Account
Get account tokens
Retrieve a list of an accounts tokens.
Required scope: tokens.read
.
GET
/
account
/
tokens
curl --request GET \
--url https://api.other.page/v1/account/tokens \
--header 'Authorization: Bearer <token>'
{
"total": 123,
"perPage": 123,
"page": 123,
"results": [
{
"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"
}
]
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Query Parameters
Filter by token collection addresses
Page of results to return.
Number of items per page to return. Defaults to 100.
Response
200 - application/json
Available options:
erc721
, erc1155
curl --request GET \
--url https://api.other.page/v1/account/tokens \
--header 'Authorization: Bearer <token>'
{
"total": 123,
"perPage": 123,
"page": 123,
"results": [
{
"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"
}
]
}