Accounts

Get Ether Balance for a Single Address

Returns the Ether balance of a given address.

https://api.kromascan.com/api
   ?module=account
   &action=balance
   &address=0x2c64a1D5D602E7Fb6d21dA6211DceCc6E17a0649
   &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.kromascan.com/api
   ?module=account
   &action=balancemulti
   &address=0x45a318273749d6eb00f5f6ca3bc7cd3de26d642a,0x542E636a4060F691652202DdB9b15FA495Fb418b,0x56b4b18f6293252Fc5eEC4e5dF1915F7218d04fc,0x1782d71a0f16efcb632baf210a54ce641852a138
   &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.kromascan.com/api
   ?module=account
   &action=txlist
   &address=0x45A318273749d6eb00f5F6cA3bC7cD3De26D642A
   &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.kromascan.com/api
   ?module=account
   &action=txlistinternal
   &address=0x45A318273749d6eb00f5F6cA3bC7cD3De26D642A
   &startblock=0
   &endblock=2702578
   &page=1
   &offset=2
   &sort=asc
   &apikey=YourApiKeyToken

Query Parameters

Get 'Internal Transactions' by Transaction Hash

Returns the list of internal transactions performed within a transaction.

https://api.kromascan.com/api
   ?module=account
   &action=txlistinternal
   &txhash=0x64f68c86a0cb4dcd1a1d78a52aaec0a5f8ab4383e6b8c2a08dd207f090012abc
   &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.kromascan.com/api
   ?module=account
   &action=txlistinternal
   &startblock=1348
   &endblock=13491
   &page=1
   &offset=2
   &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.kromascan.com/api
   ?module=account
   &action=tokentx
   &contractaddress=0x0Cf7c2A584988871b654Bd79f96899e4cd6C41C0
   &address=0xcd93ef1ce3adc9aa7c46ec4bc3a2fd76db1d1f19
   &page=1
   &offset=2
   &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.kromascan.com/api
   ?module=account
   &action=tokennfttx
   &contractaddress=0xf56332270a88e7fe62d6cfdf89c70aa915b27683
   &address=0xbac5ab91293eaa612af19e4e627482b1c0ab8e1a
   &page=1
   &offset=2
   &startblock=0
   &endblock=latest
   &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.kromascan.com/api
   ?module=account
   &action=token1155tx
   &contractaddress=0x76be3b62873462d2142405439777e971754e8e77
   &address=0x83f564d180b58ad9a02a449105568189ee7de8cb
   &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

Last updated