Up to 50% Off on Your First Month

0

2

:

1

9

:

3

9

:

3

8

Sale bannerSale banner

Last updated on January 1, 1970

1 min read

Method (account_list)

account_list

info-circle-fill

Learn how to access and retrieve a list of accounts using the GetBlock Explorer API. Empower your applications with blockchain data easily and efficiently.

Example

POST /account/list

Request

curl --location --request POST 'https://near.getblock.io/explorer/account/list' \
--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",
  "balance": "51903615609279009283",
  "created_at": 1601591231895000000,
  "creation_tx": "AqZs5TUgpCFTfzJQAyGkvUzSpGBmiybPj1qxentDeHuW",
  "stake": "51451903615609279009283504",
  "transaction_count": 1050
}]