getHolders
Retrieve a sorted list of cryptocurrency holders by balance for a specified coin, with customizable limit and offset parameters.
Instructions
Fetch the list of holders for a given coin, ordered by balance descending by default.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
coinId | Yes | ||
limit | No | ||
offset | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"coinId": {
"type": "string"
},
"limit": {
"default": 50,
"maximum": 100,
"minimum": 1,
"type": "integer"
},
"offset": {
"default": 0,
"minimum": 0,
"type": "integer"
}
},
"required": [
"coinId"
],
"type": "object"
}