Accounts

Get AVAX Balance for a Single Address

Returns the AVAX balance of a given address.

https://api.snowscan.xyz/api
   ?module=account
   &action=balance
   &address=0xe03a7f448f72da64810f9e44412f222cfb5004f3
   &tag=latest
   &apikey=YourApiKeyToken

Query Parameters

Get AVAX Balance for Multiple Addresses in a Single Call

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

https://api.snowscan.xyz/api
   ?module=account
   &action=balancemulti
   &address=0xa0ae667479e1a7faaa8535ba9ab0c191c2a243ab,0xc64211a1a05d0354dfb34845641389a97e1aefe5,0x893e0df5c459f1f84d0bbdaac7e22cf7c87de92c
   &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.snowscan.xyz/api
   ?module=account
   &action=txlist
   &address=0x0559f8abdbbf92df77ad078838c28d8323d59cd6
   &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.snowscan.xyz/api
   ?module=account
   &action=txlistinternal
   &address=0x5Ca52A9A15B5161800C099D968878914aBE65525
   &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.snowscan.xyz/api
   ?module=account
   &action=txlistinternal
   &txhash=0x778077eee09d09420dfe6fb1001afca756d5a35e14df35a255aaa3dea6d0e924
   &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.snowscan.xyz/api
   ?module=account
   &action=txlistinternal
   &startblock=13028500 
   &endblock=13028600
   &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.snowscan.xyz/api
   ?module=account
   &action=tokentx
   &contractaddress=0x6e84a6216ea6dacc71ee8e6b0a5b7322eebc0fdd
   &address=0xad0c052a9ea77913cb79a0cc4a0fd7842960ecba
   &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.snowscan.xyz/api
   ?module=account
   &action=tokennfttx
   &contractaddress=0x1b7966315eF0259de890F38f1bDB95Acc03caCdD
   &address=0xa6d59120219fd6e763b5bc872cc9f76c1ac89878
   &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 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.snowscan.xyz/api
   ?module=account
   &action=token1155tx
   &contractaddress=0x42c701d4e359178412d014506cfac43a67e57d6d
   &address=0x9d870f63673d739871071cd5b4275bb791512325
   &page=1
   &offset=2
   &startblock=0
   &endblock=latest
   &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 Mined by Address

Returns the list of blocks mined by an address.

https://api.snowscan.xyz/api
   ?module=account
   &action=getminedblocks
   &address=0x9dd134d14d1e65f84b706d6f205cd5b1cd03a46b
   &blocktype=blocks
   &page=1
   &offset=10
   &apikey=YourApiKeyToken

Query Parameters

Returns the balance of an address at a certain block height.

https://api.snowscan.xyz/api
   ?module=account
   &action=balancehistory
   &address=0x9Ae47E4a02f1F9a6dc8950522aC20eA62009804E
   &blockno=9319008
   &apikey=YourApiKeyToken

Query Parameters

Last updated