Accounts
Get balance for a single address
Returns the balance of a given address.
Sample request
Request query parameters
address*
the string representing the address to check for balance
tag*
the string pre-defined block parameter, either earliest
, pending
or latest
Sample response
Get balance history for a single address
Returns the balance history of a given address.
Sample request
Request query parameters
address*
the string representing the address to check for balance
starttimestamp
the starting timestamp of interval, default value is null
endtimestamp
the ending timestamp of interval, default value is null
offset
skips the offset
records before beginning to return the records, default value is 0
limit
the number of records displayed per page, default value is 10000
sort
the sorting preference, use asc
to sort by ascending and desc
to sort by descending, default value is asc
Sample response
Get balance for multiple addresses in a single call
Returns the balance of the accounts from a list of addresses (maximum of 20 addresses per call).
Sample request
Request query parameters
address*
the strings representing the addresses to check for balance, separated by ,
tag*
the string pre-defined block parameter, either earliest
, pending
or latest
Sample response
Get various account counters for a single address
Returns the account counters of a given address.
Sample request
Request query parameters
address*
the string representing the address to check for counters
tag
the string pre-defined block parameter, either earliest
, pending
or latest
Sample response
Get the total number of wallet addresses
Returns the total number of wallet addresses.
Sample request
Sample response
Get a list of 'normal' transactions by address
Returns the list of transactions performed by an address.
Sample request
Request query parameters
address*
the string representing the address to check for normal transactions
startblock
the integer block number to start searching for transactions, default value is 0
endblock
the integer block number to stop searching for transactions, default value is 1000000000
direction
direction option in
for incoming transactions, out
for outgoing, default value is all
offset
skips the offset
records before beginning to return the records, default value is 0
limit
the number of records displayed per page, default value is 10000
sort
the sorting preference, use asc
to sort by ascending and desc
to sort by descending, default value is asc
Sample response
Get a list of 'internal' transactions by address
Returns the list of internal transactions performed by an address.
Sample request
Request query parameters
address*
the string representing the address to check for internal transactions
startblock
the integer block number to start searching for transactions, default value is 0
endblock
the integer block number to stop searching for transactions, default value is 1000000000
direction
direction option in
for incoming transactions, out
for outgoing, default value is all
offset
skips the offset
records before beginning to return the records, default value is 0
limit
the number of records displayed per page, default value is 10000
sort
the sorting preference, use asc
to sort by ascending and desc
to sort by descending, default value is asc
Sample response
Get a list of 'ERC20 - Token Transfer Events' by Address
Returns the list of ERC-20 tokens transferred by an address, with optional filtering by token contract.
Sample request
Usage:
ERC-20 transfers from an address, specify the
address
parameterERC-20 transfers from a contract address, specify the
contractaddress
parameterERC-20 transfers from an address filtered by a token contract, specify both
address
andcontractaddress
parameters
Request query parameters
address**
the string representing the token address
contractaddress**
the string representing the contract address
startblock
the integer block number to start searching for transactions, default value is 0
endblock
the integer block number to stop searching for transactions, default value is 1000000000
offset
skips the offset
records before beginning to return the records, default value is 0
limit
the number of records displayed per page, default value is 10000
sort
the sorting preference, use asc
to sort by ascending and desc
to sort by descending, default value is asc
Sample response
Get list of blocks mined by address
Returns the list of blocks mined by an address.
Sample request
Request query parameters
address*
the string representing the address
offset
skips the offset
records before beginning to return the records, default value is 0
limit
the number of records displayed per page, default value is 10000
Sample response
Get KYC level, activation status and reputation by address
Returns information about the KYC level, activation status, and reputation (trust score) of an address.
Sample request
Request query parameters
address*
the string representing the address
tag
the string pre-defined block parameter, either block number or latest
, default value is latest
Sample response
Last updated