Skip to main content

/account

Returns all accounts available on blockchain. By default it returns 25 accounts.

Parameters

  • FROM OPTIONAL (number) - the number of items to skip for the result set
  • SIZE OPTIONAL (number) - the number of items to retrieve

Returns

Object

  • address: (string) - account bech32 address
  • balance: (number) - account current balance
  • nonce: (number) - account current nonce
  • shard: (number) - the shard ID allocated to the account

Example Request and Result for /account

Request:

curl -X 'GET' \
'https://elrond-api.public.blastapi.io/accounts?from=1&size=3' \
-H 'accept: application/json'

Result:

[
{
"address": "erd1rf4hv70arudgzus0ymnnsnc4pml0jkywg2xjvzslg0mz4nn2tg7q7k0t6p",
"balance": "2194655740212148543577179",
"nonce": 49,
"shard": 0
},
{
"address": "erd195fe57d7fm5h33585sc7wl8trqhrmy85z3dg6f6mqd0724ymljxq3zjemc",
"balance": "1330000986910000000000000",
"nonce": 317,
"shard": 0
},
{
"address": "erd1qqqqqqqqqqqqqpgqhe8t5jewej70zupmh44jurgn29psua5l2jps3ntjj3",
"balance": "1015594421523001932108087",
"nonce": 0,
"shard": 1
}
]