TPS: < 0.01
Ecosystems
Avalanche
Blockchains
GUNZFujiOrangeDexalotSpaceBeamPlyrDFKHissEchoEclipseJiritsutes
Frqtal ExplorerTestnet
Blockchain
Tokens
Insights
Developers
More

Documentation - Frqtal Explorer

Etherscan-like APIs > Account
Getting Started
Routescan APIs
Etherscan-like APIs (8)
Account
Block
Contract
Geth/Parity Proxy
Logs
Stats
Transactions
Tokens
Recipes (4)
Verify Contract
Documentation ›Etherscan-like APIs > Account
No sign-up or API key required for free tier access (up to 2 requests per second, with a daily limit of 10,000 calls, available for free API Plan chains only). The free tier API requests will go through with or without an API key placeholder.
Get Ether Balance for a Single Address
https://api.routescan.io/v2/network/testnet/evm/ 21816/etherscan/api
  ?module=account
  &action=balance
  &address=0xde0b295669a9fd93d5f28d9ec85e40f4cb697bae
  &tag=latest
  &apikey=YourApiKeyToken
Try this endpoint in your browser 🔗
  • Request
  • Response
Query Parameters
Parameter
Description
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
https://api.routescan.io/v2/network/testnet/evm/ 21816/etherscan/api
  ?module=account
  &action=balancemulti
  &address=0xddbd2b932c763ba5b1b7ae3b362eac3e8d40121a,0x63a9975ba31b0b9626b34300f7f627147df1f526,0x198ef1ec325a96cc354c7266a038be8b5c558f67
  &tag=latest
  &apikey=YourApiKeyToken
Try this endpoint in your browser 🔗
  • Request
  • Response
Query Parameters
Parameter
Description
address
the strings representing the addresses to check for balance, separated by, up to 20 addresses per call
tag
the integer pre-defined block parameter, either earliest, pending or latest
Get a list of 'Normal' Transactions By Address
https://api.routescan.io/v2/network/testnet/evm/ 21816/etherscan/api
  ?module=account
  &action=txlist
  &address=0xddbd2b932c763ba5b1b7ae3b362eac3e8d40121a
  &startblock=0
  &endblock=99999999
  &page=1
  &offset=10
  &sort=asc
  &apikey=YourApiKeyToken
Try this endpoint in your browser 🔗
  • Request
  • Response
Query Parameters
Parameter
Description
address
the string representing the addresses to check for balance
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 descending. Tip: Specify a smaller startblock and endblock range for faster search results.
Get a list of 'Internal' Transactions by Address
https://api.routescan.io/v2/network/testnet/evm/ 21816/etherscan/api
  ?module=account
  &action=txlistinternal
  &address=0x2c1ba59d6f58433fb1eaee7d20b26ed83bda51a3
  &startblock=0
  &endblock=2702578
  &page=1
  &offset=10
  &sort=asc
  &apikey=YourApiKeyToken
Try this endpoint in your browser 🔗
  • Request
  • Response
Query Parameters
Parameter
Description
address
the string representing the addresses to check for balance
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 descending
Get 'Internal Transactions' by Transaction Hash
https://api.routescan.io/v2/network/testnet/evm/ 21816/etherscan/api
  ?module=account
  &action=txlistinternal
  &txhash=0x40eb908387324f2b575b4879cd9d7188f69c8fc9d87c901b9e2daaea4b442170
  &apikey=YourApiKeyToken
Try this endpoint in your browser 🔗
  • Request
  • Response
Query Parameters
Parameter
Description
txhash
the string representing the transaction hash to check for internal transactions
Get "Internal Transactions" by Block Range
https://api.routescan.io/v2/network/testnet/evm/ 21816/etherscan/api
  ?module=account
  &action=txlistinternal
  &startblock=13481773
  &endblock=13491773
  &page=1
  &offset=10
  &sort=asc
  &apikey=YourApiKeyToken
Try this endpoint in your browser 🔗
  • Request
  • Response
Query Parameters
Parameter
Description
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 descending
Get a list of 'ERC20 - Token Transfer Events' by Address
https://api.routescan.io/v2/network/testnet/evm/ 21816/etherscan/api
  ?module=account
  &action=tokentx
  &contractaddress=0x9702230A8Ea53601f5cD2dc00fDBc13d4dF4A8c7
  &address=0x77134cbC06cB00b66F4c7e623D5fdBF6777635EC
  &page=1
  &offset=100
  &startblock=34372864
  &endblock=34472864
  &sort=asc
  &apikey=YourApiKeyToken
Try this endpoint in your browser 🔗
  • Request
  • Response
Query Parameters
Parameter
Description
address
the string representing the address to check for balance
contractaddress
the string representing the token contract address to check for balance
page
the integer page number, if pagination is enabled
offset
the number of transactions displayed per page
startblock
the integer block number to start searching for transactions
endblock
the integer block number to stop searching for transactions
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
https://api.routescan.io/v2/network/testnet/evm/ 21816/etherscan/api
  ?module=account
  &action=tokennfttx
  &contractaddress=0x3025c5c2aa6eb7364555aac0074292195701bbd6
  &address=0x6f50142e432b0f6cb851d93430fd5afaafa0734a
  &page=1
  &offset=100
  &startblock=25176525
  &endblock=35676525
  &sort=desc
  &apikey=YourApiKeyToken
Try this endpoint in your browser 🔗
  • Request
  • Response
Query Parameters
Parameter
Description
address
the string representing the address to check for balance
contractaddress
the string representing the token contract address to check for balance
page
the integer page number, if pagination is enabled
offset
the number of transactions displayed per page
startblock
the integer block number to start searching for transactions
endblock
the integer block number to stop searching for transactions
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
https://api.routescan.io/v2/network/testnet/evm/ 21816/etherscan/api
  ?module=account
  &action=token1155tx
  &contractaddress=0xa695ea0c90d89a1463a53fa7a02168bc46fbbf7e
  &address=0xd550d3fa339f8a6ba2957c83e379d7d7da0fd529
  &page=1
  &offset=100
  &startblock=0
  &endblock=99999999
  &sort=desc
  &apikey=YourApiKeyToken
Try this endpoint in your browser 🔗
  • Request
  • Response
Query Parameters
Parameter
Description
address
the string representing the address to check for balance
contractaddress
the string representing the token contract address to check for balance
page
the integer page number, if pagination is enabled
offset
the number of transactions displayed per page
startblock
the integer block number to start searching for transactions
endblock
the integer block number to stop searching for transactions
sort
the sorting preference, use asc to sort by ascending and desc to sort by descending
Get Historical Ether Balance for a Single Address By BlockNo
https://api.routescan.io/v2/network/testnet/evm/ 21816/etherscan/api
  ?module=account
  &action=balancehistory
  &address=0xde0b295669a9fd93d5f28d9ec85e40f4cb697bae
  &blockno=8000000
  &apikey=YourApiKeyToken
Try this endpoint in your browser 🔗
  • Request
  • Response
Query Parameters
Parameter
Description
address
the string representing the address to check for balance
blockno
the integer block number to check balance.
Get Gas Oracle
https://api.routescan.io/v2/network/testnet/evm/ 21816/etherscan/api
  ?module=gastracker
  &action=gasoracle
  &apikey=YourApiKeyToken
Try this endpoint in your browser 🔗
  • Request
  • Response
No parameters required
FrqtalPowered by Frqtal
A Block Explorer and Analytics Platform for Frqtal
Company
Contact Us
Privacy Policy
Cookie Policy
Terms of Use
Terms and Conditions
Community
API Documentation
Tag submission
Status
Report Abuse
Product & Services
API Plans
Frqtal © 2025 | Built by Team Routescan
Donations 0xC29391b5...1741d8Dcf1 ❤️