Last updated on January 1, 1970
1 min read
Method (account_list_by-tx-count)
account_list_by-tx-count
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
}
]
Previous
{ "overview": "Overview", "guides": "Guides", "get-started": "Get Started", "rpc-service": "Nodes Methods", "getblock-explorer": "Explorer API", "getblock-tracker": "Tracker API", "nodes-endpoints": "Nodes Endpoints" }
Next
{ "overview": "Overview", "guides": "Guides", "get-started": "Get Started", "rpc-service": "Nodes Methods", "getblock-explorer": "Explorer API", "getblock-tracker": "Tracker API", "nodes-endpoints": "Nodes Endpoints" }