Accounts

Get Ether Balance for a Single Address

Returns the Ether balance of a given address.

https://api-sepolia.arbiscan.io/api
   ?module=account
   &action=balance
   &address=0x66288E5EAa4B4e22A38423f00A8e0E359bD71e78
   &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-sepolia.arbiscan.io/api
   ?module=account
   &action=balancemulti
   &address=0xF27552275B91e436Af383266262a37fCEf017B19,0x2836eC28C32E232280F984d3980BA4e05d6BF68f,0x2e1d90501C3173367ecC6a409Fb1b588Bf3C16A5
   &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-sepolia.arbiscan.io/api
   ?module=account
   &action=txlist
   &address=0xF27552275B91e436Af383266262a37fCEf017B19
   &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-sepolia.arbiscan.io/api
   ?module=account
   &action=txlistinternal
   &address=0xF27552275B91e436Af383266262a37fCEf017B19
   &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.

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

https://api-sepolia.arbiscan.io/api
   ?module=account
   &action=txlistinternal
   &txhash=0x8e6b16dd362fede60dd1d2bf16492968f2ff64aa6510bbb1d1c9dc50071bd622
   &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-sepolia.arbiscan.io/api
   ?module=account
   &action=txlistinternal
   &startblock=7740
   &endblock=7743
   &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-sepolia.arbiscan.io/api
   ?module=account
   &action=tokentx
   &contractaddress=0x78f04eC76df38Fcb37971Efa8EcbcB33f52dae0F
   &address=0x6e80164ea60673d64d5d6228beb684a1274bb017
   &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-sepolia.arbiscan.io/api
   ?module=account
   &action=tokennfttx
   &contractaddress=0x4EEEdD240C98Ef89Ffc25616bee0B7Ac8Cf82Dd1
   &address=0xb180014b22f45d5899eb50148084cc56393782fb
   &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