Accounts

Get Ether Balance for a Single Address

Returns the Ether balance of a given address.

https://api-hekla.taikoscan.io/api
   ?module=account
   &action=balance
   &address=0x3729f6266449A563499D77AF9c83687B55F0a6f8
   &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-hekla.taikoscan.io/api
   ?module=account
   &action=balancemulti
   &address=0x2a50c018f5d0640DCd89e6026D80fD5EEa1811dD,0x3729f6266449A563499D77AF9c83687B55F0a6f8,0x1C8F880125be058FC903098de83f136039771EB7
   &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-hekla.taikoscan.io/api
   ?module=account
   &action=txlist
   &address=0x424bFb32f78731252a6BCeDc828E38e2701DAAEf
   &startblock=0
   &endblock=99999999
   &page=1
   &offset=2
   &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-hekla.taikoscan.io/api
   ?module=account
   &action=txlistinternal
   &address=0xb99361DaA53462616F867A5FAEc4279f74b90c14
   &startblock=0
   &endblock=99999999
   &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.

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

https://api-hekla.taikoscan.io/api
   ?module=account
   &action=txlistinternal
   &txhash=0xe6bfa7d5aa50d84aece71f00c9bf18f15a25762522f1d68973f1eeb0dfc7052e
   &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-hekla.taikoscan.io/api
   ?module=account
   &action=txlistinternal
   &startblock=195921
   &endblock=latest
   &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-hekla.taikoscan.io/api
   ?module=account
   &action=tokentx
   &contractaddress=0x72d9b7FCa4C14b9710D25e2bD72ca0b2dD740213
   &address=0xb45fdaE8D4CC928Eb7dB981E42402457EF463721
   &page=1
   &offset=2
   &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-hekla.taikoscan.io/api
   ?module=account
   &action=tokennfttx
   &contractaddress=0xE0d6171E5b1f11304A048148eb4351F755dD0579
   &address=0x3CDc6bB73b7FD2DA758a8d5Bf26FBFe1f99EA7A5
   &page=1
   &offset=2
   &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-hekla.taikoscan.io/api
   ?module=account
   &action=token1155tx
   &contractaddress=0xC3Ee6239EC39968F92aEE63Ed805F32eC51ac19C
   &address=0x0000000000000000000000000000000000000000
   &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

Last updated