GET /wallets/:address/tokens
View the list of tokens that a specific wallet address owns
All parameters to this endpoint are optional. Refer to the pagination doc for more info about how pagination works.
Field | Type | Description | Default |
---|---|---|---|
limit | integer? | Optional field to specify the maximum number of items to return (0-1000) | 50 |
offset | integer? | Optional field to specify the number of items to skip before selecting items | 0 |
claimStatus | string? ( claimed | unclaimed ) | Optional field to specify the status of the token ( claimed or unclaimed ) | empty
By default, it returns all tokens, both claimed and unclaimed. |
communityId | string? | Optional field to specify the community unique identifier that the token belongs to | empty
By default it returns all tokens from all communities. |
{
"limit": 50,
"offset": 0,
"data": [
{
"kudosTokenId": 502,
"headline": "test",
"assetUrl": "https://images.mintkudos.xyz/token/502.png",
"createdAt": "2022-06-15T01:55:53.362Z",
"claimStatus": "claimed",
"communityId": "c9d53a92-f226-40fd-8fba-d8a1768ba7c2"
},
{
"kudosTokenId": 503,
"headline": "test2",
"assetUrl": "https://images.mintkudos.xyz/token/503.mp4",
"createdAt": "2022-06-15T01:58:53.362Z",
"claimStatus": "unclaimed",
"communityId": "7a91bf23-92dc-4f62-a05d-6e02761213de"
}
]
}
Last modified 4mo ago