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.
Format
int32Range
1 <= value <= 1000Default
10offset?integer
Skip the first N rows. Use with limit to batch requests.
Format
int32Range
0 <= valueDefault
0Response Body
application/json
application/json
curl -X GET "https://example.com/api/v3/topAccountsByBalance"[ { "account": "string", "balance": "string" }]