Accounts
Last updated
Was this helpful?
Last updated
Was this helpful?
Get Ether Balance for a Single Address
✅
✅
Get Ether Balance for Multiple Addresses in a Single Call
✅
✅
Get a list of 'Normal' Transactions By Address
✅
✅
Get a list of 'Internal' Transactions by Address
✅
✅
Get 'Internal Transactions' by Transaction Hash
✅
✅
Get 'Internal Transactions' by Block Range
✅
✅
Get a list of 'ERC20 - Token Transfer Events' by Address
✅
✅
Get a list of 'ERC721 - Token Transfer Events' by Address
✅
✅
Get a list of 'ERC1155 - Token Transfer Events' by Address
✅
✅
Get list of Blocks Validated by Address
✅
🛠️
Get Beacon Chain Withdrawals by Address and Block Range
✅
🛠️
Get Historical Ether Balance for a Single Address By BlockNo
✅
✅
[https://docs.etherscan.io/api-endpoints/accounts#get-ether-balance-for-a-single-address]
Returns the Ether balance of a given address.
Try this endpoint in your browser
Query Parameters
address
the string
representing the address to check for balance
tag
the string
pre-defined block parameter, either earliest
, pending
or latest
Returns the balance of the accounts from a list of addresses.
Query Parameters
addresses
the strings
representing the addresses to check for balance, separated by ,
up to 20 addresses per call
tag
the string
pre-defined block parameter, either earliest
, pending
or latest
[https://docs.etherscan.io/api-endpoints/accounts#get-a-list-of-normal-transactions-by-address]
Returns the list of transactions performed by an address, with optional pagination.
Query Parameters
address
the string
representing the address to get transactions where the 'from' or 'to' is the given address
startblock
the integer
block number to start searching for transactions
endblock
the integer
block number to stop searching for transactions
page
the integer
page number, if pagination is enabled
offset
the number of transactions displayed per page
sort
the sorting preference, use asc
to sort by ascending and desc
to sort by descendin Tip: Specify a smaller startblock
and endblock
range for faster search results.
[https://docs.etherscan.io/api-endpoints/accounts#get-a-list-of-internal-transactions-by-address]
Returns the list of internal transactions performed by an address, with optional pagination.
Query Parameters
address
the string
representing the address to get internal transactions where the 'from' or 'to' is the given address
startblock
the integer
block number to start searching for transactions
endblock
the integer
block number to stop searching for transactions
page
the integer
page number, if pagination is enabled
offset
the number of transactions displayed per page
sort
the sorting preference, use asc
to sort by ascending and desc
to sort by descendin Tip: Specify a smaller startblock
and endblock
range for faster search results.
[https://docs.etherscan.io/api-endpoints/accounts#get-internal-transactions-by-transaction-hash]
Returns the list of internal transactions performed within a transaction.
Query Parameters
txhash
the string
representing the transaction hash to check for internal transactions
[https://docs.etherscan.io/api-endpoints/accounts#get-internal-transactions-by-block-range]
Returns the list of internal transactions performed within a block range, with optional pagination.
Query Parameters
startblock
the integer
block number to start searching for transactions
endblock
the integer
block number to stop searching for transactions
page
the integer
page number, if pagination is enabled
offset
the number of internal transactions displayed per page
sort
the sorting preference, use asc
to sort by ascending and desc
to sort by descending
Returns the list of ERC-20 tokens transferred by an address, with optional filtering by token contract.
Usage:
ERC-20 transfers from an address, specify the address
parameter
ERC-20 transfers from a contract address, specify the contract address
parameter
ERC-20 transfers from an address filtered by a token contract, specify both address
and contract address
parameters.
Query Parameters
address
the string
representing the address to get token transfers where the 'from' or 'to' is the given address
contractaddress
the string
representing the address to get token transfers where the contract address(token) is the given contract address
page
the integer
page number, if pagination is enabled
offset
the number of token transfers displayed per page
startblock
the integer
block number to start searching for token transfers
endblock
the integer
block number to stop searching for token transfers
sort
the sorting preference, use asc
to sort by ascending and desc
to sort by descending
Returns the list of ERC-721 ( NFT ) tokens transferred by an address, with optional filtering by token contract.
Usage:
ERC-721 transfers from an address, specify the address
parameter
ERC-721 transfers from a contract address, specify the contract address
parameter
ERC-721 transfers from an address filtered by a token contract, specify both address
and contract address
parameters.
Query Parameters
address
the string
representing the address to get token transfers where the 'from' or 'to' is the given address
contractaddress
the string
representing the address to get token transfers where the contract address(token) is the given contract address
page
the integer
page number, if pagination is enabled
offset
the number of token transfers displayed per page
startblock
the integer
block number to start searching for token transfers
endblock
the integer
block number to stop searching for token transfers
sort
the sorting preference, use asc
to sort by ascending and desc
to sort by descending
Returns the list of ERC-1155 ( Multi Token Standard ) tokens transferred by an address, with optional filtering by token contract.
Usage:
ERC-1155 transfers from an address, specify the address
parameter
ERC-1155 transfers from a contract address, specify the contract address
parameter
ERC-1155 transfers from an address filtered by a token contract, specify both address
and contract address
parameters.
Query Parameters
address
the string
representing the address to get token transfers where the 'from' or 'to' is the given address
contractaddress
the string
representing the address to get token transfers where the contract address(token) is the given contract address
page
the integer
page number, if pagination is enabled
offset
the number of token transfers displayed per page
startblock
the integer
block number to start searching for token transfers
endblock
the integer
block number to stop searching for token transfers
sort
the sorting preference, use asc
to sort by ascending and desc
to sort by descending
Query Parameters
address
the string
representing the address to check for balance
blockno
the integer
block number to check balance for eg. 8000000
Tip: The result
is returned in wei.
Try this endpoint in your browser
Try this endpoint in your browser
Tip: The result
is returned in wei.
Try this endpoint in your browser
Try this endpoint in your browser
Try this endpoint in your browser
Try this endpoint in your browser
Try this endpoint in your browser
Try this endpoint in your browser
Try this endpoint in your browser
Try this endpoint in your browser
Try this endpoint in your browser
Try this endpoint in your browser
Try this endpoint in your browser
Try this endpoint in your browser
Try this endpoint in your browser
Try this endpoint in your browser
Try this endpoint in your browser