Accounts

Get frxETH Balance for a Single Address

Returns the frxETH balance of a given address.

https://api-holesky.fraxscan.com/api
   ?module=account
   &action=balance
   &address=0xe1c35ab923d64bb4c7415196ce8416a2b14bdd9c	
   &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-holesky.fraxscan.com/api
   ?module=account
   &action=balancemulti
   &address=0xe1c35ab923d64bb4c7415196ce8416a2b14bdd9c,0xd37dabe2ccca72166f41c236b91ca36494fe5919,0x0e77e424000d5546bd3ae158c1e2de7784203506	
   &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-holesky.fraxscan.com/api
   ?module=account
   &action=txlist
   &address=0xe1c35ab923d64bb4c7415196ce8416a2b14bdd9c
   &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-holesky.fraxscan.com/api
   ?module=account
   &action=txlistinternal
   &address=0x5dC9EC157d866257f16DD4459216900D8bb75abc
   &startblock=0
   &endblock=latest
   &page=1
   &offset=2
   &sort=asc
   &apikey=YourApiKeyToken

Query Parameters

Get 'Internal Transactions' by Transaction Hash

Returns the list of internal transactions performed within a transaction.

Note : This API endpoint returns a maximum of 10000 records only.

https://api-holesky.fraxscan.com/api
   ?module=account
   &action=txlistinternal
   &txhash=0xddda9b8e9c311ac321a29699623f51561e7fdcf87c7974d37e7698e097326452
   &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-holesky.fraxscan.com/api
   ?module=account
   &action=txlistinternal
   &startblock=0
   &endblock=3304477
   &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-holesky.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-holesky.fraxscan.com/api
   ?module=account
   &action=tokennfttx
   &contractaddress=0x5e977F638C9F5AF5217861804e506963722B0D5c
   &address=0x5e977f638c9f5af5217861804e506963722b0d5c
   &page=1
   &offset=2
   &startblock=0
   &endblock=latest
   &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

Last updated