Get token's top holders
GET/ronin/tokens/:address/top_holders
Get the top holders of the specified token.
Request
Path Parameters
address stringrequired
Token address. Example: 0xa8754b9fa15fc18bb59458815510e40a12cd2014
Query Parameters
limit integer
Default is 20
offset integer
Default is 0
Responses
- 200
- 400
- 404
- 500
OK
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
items
object[]
balance string
ownerAddress string
percentage number
updatedAt integer
paging
object
nextCursor string
total integer
{
"items": [
{
"balance": "string",
"ownerAddress": "string",
"percentage": 0,
"updatedAt": 0
}
],
"paging": {
"nextCursor": "string",
"total": 0
}
}
Invalid parameter
- application/json
- Schema
- Example (from schema)
Schema
errorCode integer
message string
{
"errorCode": 0,
"message": "string"
}
Not found
- application/json
- Schema
- Example (from schema)
Schema
errorCode integer
message string
{
"errorCode": 0,
"message": "string"
}
Internal server error
- application/json
- Schema
- Example (from schema)
Schema
errorCode integer
message string
{
"errorCode": 0,
"message": "string"
}
Loading...
Was this helpful?
Happy React is loading...