Accounts
Compare With EtherScan
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
✅
✅
Get Ether Balance for a Single Address
[https://docs.etherscan.io/api-endpoints/accounts#get-ether-balance-for-a-single-address]
Returns the Ether balance of a given address.
https://api.w3w.ai/mantle/v1/developer/api
?module=account
&action=balance
&address=0xde0b295669a9fd93d5f28d9ec85e40f4cb697bae
&tag=latest
&apikey=YourApiKeyToken
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
Get Ether Balance for Multiple Addresses in a Single Call
Returns the balance of the accounts from a list of addresses.
https://api.w3w.ai/mantle/v1/developer/api
?module=account
&action=balancemulti
&address=0xde0b295669a9fd93d5f28d9ec85e40f4cb697bae,0x63a9975ba31b0b9626b34300f7f627147df1f526,0x198ef1ec325a96cc354c7266a038be8b5c558f67
&tag=latest
&apikey=YourApiKeyToken
Try this endpoint in your browser 🔗
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
Get a list of 'Normal' Transactions By Address
[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.
https://api.w3w.ai/mantle/v1/developer/api
?module=account
&action=txlist
&address=0x73485e0c0fb7781802c1d5d476ad9beac8f91367
&startblock=0
&endblock=99999999
&page=1
&offset=10
&sort=asc
&apikey=YourApiKeyToken
Try this endpoint in your browser 🔗
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.
Get a list of 'Internal' Transactions by Address
[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.
https://api.w3w.ai/mantle/v1/developer/api
?module=account
&action=txlistinternal
&address=0x73485e0c0fb7781802c1d5d476ad9beac8f91367
&startblock=0
&endblock=99999999
&page=1
&offset=10
&sort=asc
&apikey=YourApiKeyToken
Try this endpoint in your browser 🔗
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.
Get 'Internal Transactions' by Transaction Hash
[https://docs.etherscan.io/api-endpoints/accounts#get-internal-transactions-by-transaction-hash]
Returns the list of internal transactions performed within a transaction.
https://api.w3w.ai/mantle/v1/developer/api
?module=account
&action=txlistinternal
&txhash=0x25cd57fe35bb19b4e404ac281180ec29f8563c374e70ca3bdac093f46cf0b446
&apikey=YourApiKeyToken
Try this endpoint in your browser 🔗
Query Parameters
txhash
the string
representing the transaction hash to check for internal transactions
Get "Internal Transactions" by Block Range
[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.
https://api.w3w.ai/mantle/v1/developer/api
?module=account
&action=txlistinternal
&startblock=7873654
&endblock=7873655
&page=1
&offset=10
&sort=asc
&apikey=YourApiKeyToken
Try this endpoint in your browser 🔗
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
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.
https://api.w3w.ai/mantle/v1/developer/api
?module=account
&action=tokentx
&contractaddress=0x201eba5cc46d216ce6dc03f6a759e8e766e956ae
&address=0xbe18aad013699c1cdd903cb3e6d596ef99c37650
&page=1
&offset=5
&startblock=0
&endblock=27025780
&sort=asc
&apikey=YourApiKeyToken
Usage:
ERC-20 transfers from an address, specify the
address
parameterERC-20 transfers from a contract address, specify the
contract address
parameterERC-20 transfers from an address filtered by a token contract, specify both
address
andcontract address
parameters.
Try this endpoint in your browser 🔗
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
Get a list of 'ERC721 - Token Transfer Events' by Address
Returns the list of ERC-721 ( NFT ) tokens transferred by an address, with optional filtering by token contract.
https://api.w3w.ai/mantle/v1/developer/api
?module=account
&action=tokennfttx
&contractaddress=0x03ddc4b60d6bbf399a8397d73462060fdfb83476
&address=0x03ddc4b60d6bbf399a8397d73462060fdfb83476
&page=1
&offset=5
&startblock=0
&endblock=27025780
&sort=asc
&apikey=YourApiKeyToken
Usage:
ERC-721 transfers from an address, specify the
address
parameterERC-721 transfers from a contract address, specify the
contract address
parameterERC-721 transfers from an address filtered by a token contract, specify both
address
andcontract address
parameters.
Try this endpoint in your browser 🔗
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
Get a list of 'ERC1155 - Token Transfer Events' by Address
Returns the list of ERC-1155 ( Multi Token Standard ) tokens transferred by an address, with optional filtering by token contract.
https://api.w3w.ai/mantle/v1/developer/api
?module=account
&action=token1155tx
&contractaddress=0x55fcd19c08aec229da7f5ee00b5663c0d101249f
&address=0x66c623746decd4e7b53d7b0d9e8ad2eb09074fcb
&page=1
&offset=3
&startblock=0
&endblock=27025780
&sort=asc
&apikey=YourApiKeyToken
Usage:
ERC-1155 transfers from an address, specify the
address
parameterERC-1155 transfers from a contract address, specify the
contract address
parameterERC-1155 transfers from an address filtered by a token contract, specify both
address
andcontract address
parameters.
Try this endpoint in your browser 🔗
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
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://api.w3w.ai/mantle/v1/developer/api
?module=account
&action=balancehistory
&address=0xde0b295669a9fd93d5f28d9ec85e40f4cb697bae
&blockno=8000000
&apikey=YourApiKeyToken
Try this endpoint in your browser 🔗
Query Parameters
address
the string
representing the address to check for balance
blockno
the integer
block number to check balance for eg. 8000000
Last updated
Was this helpful?