Get top accounts by balance
Return accounts sorted by balance in descending order.
X-API-Key<token>
API key header of the form X-API-Key: <token>, where <token> is the API key. Requests without a key are limited to 1 RPS. Refer to the authentication guide for details.
In: header
Query Parameters
limit?integer
Limit the number of rows to return. Use with offset to batch requests.
offset?integer
Skip the first N rows. Use with limit to batch requests.
Response Body
application/json
application/json
curl -X GET "https://example.com/api/v3/topAccountsByBalance"[
{
"account": "string",
"balance": "string"
}
]{
"code": 0,
"error": "string"
}