TONTONDocs
TON CenterAPI referenceStats

Get top accounts by balance

Get a list of accounts sorted by balance descending.

GET
/api/v3/topAccountsByBalance

Query Parameters

limit?integer

Limit number of queried rows. Use with offset to batch read.

Default10
Formatint32
Range1 <= value <= 1000
offset?integer

Skip first N rows. Use with limit to batch read.

Default0
Formatint32
Range0 <= value

Response Body

application/json

application/json

curl -X GET "https://example.com/api/v3/topAccountsByBalance"
[
  {
    "account": "string",
    "balance": "string"
  }
]
{
  "code": 0,
  "error": "string"
}

Last updated on

On this page

No Headings