Accounts

Get frxETH Balance for a Single Address

Returns the frxETH balance of a given address.

https://api.fraxscan.com/api
   ?module=account
   &action=balance
   &address=0xe7c147cd1a7c05a6e73217645547582024e87a9b
   &tag=latest
   &apikey=YourApiKeyToken

Query Parameters

Get frxETH Balance for Multiple Addresses in a Single Call

Returns the balance of the accounts from a list of addresses.

https://api.fraxscan.com/api
   ?module=account
   &action=balancemulti
   &address=0xe7c147cd1a7c05a6e73217645547582024e87a9b,0xc6ef452b0de9e95ccb153c2a5a7a90154aab3419,0xb0e1650a9760e0f383174af042091fc544b8356f
   &tag=latest
   &apikey=YourApiKeyToken

Query Parameters

Get a list of 'Normal' Transactions By Address

Returns the list of transactions performed by an address, with optional pagination.

https://api.fraxscan.com/api
   ?module=account
   &action=txlist
   &address=0xe7c147cd1a7c05a6e73217645547582024e87a9b
   &startblock=0
   &endblock=latest
   &page=1
   &offset=2
   &sort=asc
   &apikey=YourApiKeyToken

Query Parameters

Get a list of 'Internal' Transactions by Address

Returns the list of internal transactions performed by an address, with optional pagination.

https://api.fraxscan.com/api
   ?module=account
   &action=txlistinternal
   &address=0xe7c147cd1a7c05a6e73217645547582024e87a9b
   &startblock=0
   &endblock=99999999
   &page=1
   &offset=10
   &sort=asc
   &apikey=YourApiKeyToken

Query Parameters

Get 'Internal Transactions' by Transaction Hash

Returns the list of internal transactions performed within a transaction.

https://api.fraxscan.com/api
   ?module=account
   &action=txlistinternal
   &txhash=0x9f79269dcc29fdea733a2f2b5cd77a20309969e2863d6d4f626608421d65a539
   &apikey=YourApiKeyToken

Query Parameters

Get "Internal Transactions" by Block Range

Returns the list of internal transactions performed within a block range, with optional pagination.

https://api.fraxscan.com/api
   ?module=account
   &action=txlistinternal
   &startblock=0
   &endblock=latest
   &page=1
   &offset=2
   &sort=asc
   &apikey=YourApiKeyToken

Query Parameters

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.fraxscan.com/api
   ?module=account
   &action=tokentx
   &contractaddress=0xB223610E6BC02ED9398F8f10cB3848Ddd39E0055
   &address=0xbd2b5034f028a0284648ebf18714f3660a8a9f02
   &page=1
   &offset=2
   &startblock=0
   &endblock=latest
   &sort=asc
   &apikey=YourApiKeyToken

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

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.fraxscan.com/api
   ?module=account
   &action=tokennfttx
   &contractaddress=0x1b7966315eF0259de890F38f1bDB95Acc03caCdD
   &address=0xa6d59120219fd6e763b5bc872cc9f76c1ac89878
   &page=1
   &offset=100
   &startblock=0
   &endblock=99999999
   &sort=asc
   &apikey=YourApiKeyToken

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

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.fraxscan.com/api
   ?module=account
   &action=token1155tx
   &contractaddress=0x76be3b62873462d2142405439777e971754e8e77
   &address=0x83f564d180b58ad9a02a449105568189ee7de8cb
   &page=1
   &offset=100
   &startblock=0
   &endblock=99999999
   &sort=asc
   &apikey=YourApiKeyToken

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

Last updated