Accounts

Get Ether Balance for a Single Address

Returns the Ether balance of a given address.

https://api-nova.arbiscan.io/api
   ?module=account
   &action=balance
   &address=0x9295F4F98197b2f5ae2382C2183906AD2d3a7411
   &tag=latest
   &apikey=YourApiKeyToken

Query Parameters

Get Ether Balance for Multiple Addresses in a Single Call

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

https://api-nova.arbiscan.io/api
   ?module=account
   &action=balancemulti
   &address=0x9295F4F98197b2f5ae2382C2183906AD2d3a7411,0xa3a6F4f98197B2F5AE2382c2183906AD2d3A8522,0x198ef1ec325a96cc354c7266a038be8b5c558f67
   &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-nova.arbiscan.io/api
   ?module=account
   &action=txlist
   &address=0x3d080421c9dd5fb387d6e3124f7e1c241ade9568
   &startblock=0
   &endblock=99999999
   &page=1
   &offset=10
   &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-nova.arbiscan.io/api
   ?module=account
   &action=txlistinternal
   &address=0x639A647fbe20b6c8ac19E48E2de44ea792c62c5C
   &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-nova.arbiscan.io/api
   ?module=account
   &action=txlistinternal
   &txhash=0x7f8a6eb0e7154143999e32614b1de2fe918a02f9b169fa369fb308548c426568
   &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-nova.arbiscan.io/api
   ?module=account
   &action=txlistinternal
   &startblock=100
   &endblock=110
   &page=1
   &offset=10
   &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-nova.arbiscan.io/api
   ?module=account
   &action=tokentx
   &contractaddress=0xdBA61558A49c0A836A4106502cFbe5870DAD1743
   &address=0x301Bb26ae723d6dfBE3A14f47401ED7bE7a4C93A
   &page=1
   &offset=100
   &startblock=0
   &endblock=99999999
   &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-nova.arbiscan.io/api
   ?module=account
   &action=tokennfttx
   &contractaddress=0x6f81e9D51Bf482EC3f3724B28eEFE9f9fBe4Fe04
   &address=0x06e0fe46a6590d32377eb0d9a8ad6f9d9adfd74c
   &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

Last updated