GET /tokens/:tokenId/owners
View the list of owners for a specific Kudos token
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 | Maximum number of items to return (0-1000) | 50 |
offset | integer | Number of items to skip before selecting items | 0 |
{
"limit": 50,
"offset": 0,
"data": [
{
"walletAddress": "0x12345ab7b505d772efcc5dc43fbc090b099fd2ab",
"mintedAt": "2022-06-15T01:55:53.362Z"
},
{
"walletAddress": "0x90b099fd2ab12345ab7b505d772efcc5dc43fbc0",
"mintedAt": "2022-06-16T01:55:53.362Z"
}
]
}
Last modified 4mo ago