Accounts

Get Ether Balance for a Single Address

Returns the Ether balance of a given address.

https://api.scrollscan.com/api
   ?module=account
   &action=balance
   &address=0xe6CeF9c84E7f74578efc74D7ea4ECd2C70017cb7
   &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.scrollscan.com/api
   ?module=account
   &action=balancemulti
   &address=0xaf8ae6955d07776ab690e565ba6fbc79b8de3a5d,0xe93685f3bba03016f02bd1828badd6195988d950
   &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.scrollscan.com/api
   ?module=account
   &action=txlist
   &address=0xaf8ae6955d07776ab690e565ba6fbc79b8de3a5d
   &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.scrollscan.com/api
   ?module=account
   &action=txlistinternal
   &address=0xaf8ae6955d07776ab690e565ba6fbc79b8de3a5d
   &startblock=0
   &endblock=2702578
   &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.scrollscan.com/api
   ?module=account
   &action=txlistinternal
   &txhash=0xe02f9fe572864f0ff956cfce3a8de1a3c074f76b5b4380c1aba7f895e6f51cd2
   &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.scrollscan.com/api
   ?module=account
   &action=txlistinternal
   &startblock=	633797
   &endblock=latest
   &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.scrollscan.com/api
   ?module=account
   &action=tokentx
   &contractaddress=0xf55BEC9cafDbE8730f096Aa55dad6D22d44099Df
   &address=0x179c537f615c6659aec59571aaac90200dce95c8
   &page=1
   &offset=100
   &startblock=0
   &endblock=27025780
   &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.scrollscan.com/api
   ?module=account
   &action=tokennfttx
   &contractaddress=0xE1045AFc3ABd65bB728A90a011924b0D64c6bf86
   &address=0x905d7af27073cde00daa1b85f680f862166653a3
   &page=1
   &offset=10
   &startblock=0
   &endblock=27025780
   &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.scrollscan.com/api
   ?module=account
   &action=token1155tx
   &contractaddress=0x43eF45f67Fd1398f74a4255F8B3AA435e803C01C
   &address=0x38d3fcba8442d90a19f9984d421e0ff14a62848a
   &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

Get list of Blocks Sequenced by Address

Returns the list of blocks sequenced by an address.

https://api.scrollscan.com/api
   ?module=account
   &action=getminedblocks
   &address=0x2448e8bb66f2e79163a6afe95a91fc024e59dfb2
   &blocktype=blocks
   &page=1
   &offset=10
   &apikey=YourApiKeyToken

Query Parameters

Last updated