Accounts

Get Ether Balance for a Single Address

Returns the Ether balance of a given address.

https://api-goerli.etherscan.io/api
   ?module=account
   &action=balance
   &address=0xa65760c16a47bb1c7d5373d9d18736084e2d3f66
   &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-goerli.etherscan.io/api
   ?module=account
   &action=balancemulti
   &address=0xa65760c16a47bb1c7d5373d9d18736084e2d3f66,0xa65760c16a47bb1c7d5373d9d18736084e2d3f66,0x39fe7a6512c0b70d734515ddbdea9410ae7c26d0
   &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-goerli.etherscan.io/api
   ?module=account
   &action=txlist
   &address=0x8d6896bd0f12ec867ee7a6e92f13add924bacf03
   &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-goerli.etherscan.io/api
   ?module=account
   &action=txlistinternal
   &address=0x118ee078c3625144e3a942566fbc84f187f8c8b6
   &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-goerli.etherscan.io/api
   ?module=account
   &action=txlistinternal
   &txhash=0xfacd88edd672ce7afe2599a989c685a620eb6d5936c42869560572f20df61344
   &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-goerli.etherscan.io/api
   ?module=account
   &action=txlistinternal
   &startblock=5783806 
   &endblock=5783906 
   &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-goerli.etherscan.io/api
   ?module=account
   &action=tokentx
   &contractaddress=0xb809b9b2dc5e93cb863176ea2d565425b03c0540
   &address=0xfbc324f89831015a906b7daff97c7fd46c374413
   &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-goerli.etherscan.io/api
   ?module=account
   &action=tokennfttx
   &contractaddress=0x44458837ac4036337e5ce46ce28a744e05e02016
   &address=0x87e93ad897044086a0f0537963a6bd50711c58ac
   &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 list of Blocks Mined by Address

Returns the list of blocks mined by an address.

https://api-goerli.etherscan.io/api
   ?module=account
   &action=getminedblocks
   &address=0x73625f59cadc5009cb458b751b3e7b6b48c06f2c
   &blocktype=blocks
   &page=1
   &offset=10
   &apikey=YourApiKeyToken

Query Parameters

Last updated