Up to 50% Off on Your First Month

0

3

:

0

9

:

0

3

:

4

9

Sale bannerSale banner

Last updated on January 1, 1970

1 min read

Method (account_list_by-tx-count)

account_list_by-tx-count

info-circle-fill

Discover how to retrieve a list of accounts based on transaction count using the GetBlock Explorer API. Harness the power of blockchain data for your applications.

Example

POST /account/list/by-tx-count

Request

curl --location --request POST 'https://near.getblock.io/explorer/account/list/by-tx-count' \
--header 'Content-Type: application/json' \
--header 'Accept: application/json' \
--header 'x-api-key: YOUR-API-KEY' \
--data-raw '{
  "count": 25,
  "offset": 0
}'

Response

[
  {
    "account": "alice.near",
    "tx_count": 1080
  }
]