Get Ether Balance for a Single Address
Returns the Ether balance of a given address.
Copy https://api.taikoscan.io/api
?module=account
&action=balance
&address=0xE4eDb277e41dc89aB076a1F049f4a3EfA700bCE8
&tag=latest
&apikey=YourApiKeyToken
Try this endpoint in your browser
Request Response
Sample response
Copy {
"status":"1",
"message":"OK",
"result":"41198941006406528050"
}
Get Ether Balance for Multiple Addresses in a Single Call
Returns the balance of the accounts from a list of addresses.
Copy https://api.taikoscan.io/api
?module=account
&action=balancemulti
&address=0xE4eDb277e41dc89aB076a1F049f4a3EfA700bCE8,0x4757D97449acA795510b9f3152C6a9019A3545c3,0xee73323912a4e3772B74eD0ca1595a152b0ef282
&tag=latest
&apikey=YourApiKeyToken
Request Response
Sample Response
Copy {
"status": "1",
"message": "OK-Missing/Invalid API Key, rate limit of 1/5sec applied",
"result": [
{
"account": "0xE4eDb277e41dc89aB076a1F049f4a3EfA700bCE8",
"balance": "41075657505005246360"
},
{
"account": "0x4757D97449acA795510b9f3152C6a9019A3545c3",
"balance": "20861520635795726715"
},
{
"account": "0xee73323912a4e3772B74eD0ca1595a152b0ef282",
"balance": "9900000000000000000"
}
]
}
Get a list of 'Normal' Transactions By Address
Returns the list of transactions performed by an address, with optional pagination.
Copy https://api.taikoscan.io/api
?module=account
&action=txlist
&address=0xE4eDb277e41dc89aB076a1F049f4a3EfA700bCE8
&startblock=0
&endblock=99999999
&page=1
&offset=2
&sort=asc
&apikey=YourApiKeyToken
Request Response
Sample Response
Copy {
"status": "1",
"message": "OK-Missing/Invalid API Key, rate limit of 1/5sec applied",
"result": [
{
"blockNumber": "352",
"timeStamp": "1716815159",
"hash": "0x2058d15e7837fffc3b4ddd3ea4ff36ec95121c6590471fd166d8d353cb5520d6",
"nonce": "1",
"blockHash": "0x706c5ef27b4828bbeb9ba051ccc07a1f9acd9ebefb657724b36f10d70cab8f41",
"transactionIndex": "12",
"from": "0x3f5401a9d0dd2390d1a8c7060672d4b704df6372",
"to": "0xe4edb277e41dc89ab076a1f049f4a3efa700bce8",
"value": "50000000000000000000",
"gas": "21000",
"gasPrice": "1500000001",
"isError": "0",
"txreceipt_status": "1",
"input": "0x",
"contractAddress": "",
"cumulativeGasUsed": "1278369",
"gasUsed": "21000",
"confirmations": "375",
"methodId": "0x",
"functionName": ""
},
{
"blockNumber": "421",
"timeStamp": "1716816791",
"hash": "0xaaf6e8a07068b44bd81468dc63a0bad4c45061941a3d6a17df0bf6b8c594bc09",
"nonce": "0",
"blockHash": "0xd3a0edb9a816521d4c8adc7635c690ce64c39c3f4ffc098ee208ce9386ae993f",
"transactionIndex": "29",
"from": "0xe4edb277e41dc89ab076a1f049f4a3efa700bce8",
"to": "0xc121aaf4c44e9915c65738aa806c1037e3b64e7d",
"value": "110000000000019",
"gas": "21000",
"gasPrice": "10000001",
"isError": "0",
"txreceipt_status": "1",
"input": "0x",
"contractAddress": "",
"cumulativeGasUsed": "2851446",
"gasUsed": "21000",
"confirmations": "306",
"methodId": "0x",
"functionName": ""
}
]
}
Get a list of 'Internal' Transactions by Address
Returns the list of internal transactions performed by an address, with optional pagination.
Copy https://api.taikoscan.io/api
?module=account
&action=txlistinternal
&address=0xA51894664A773981C6C112C43ce576f315d5b1B6
&startblock=0
&endblock=2702578
&page=1
&offset=2
&sort=asc
&apikey=YourApiKeyToken
Request Response
Sample Response
Copy {
"status": "1",
"message": "OK",
"result": [
{
"blockNumber": "1484790",
"timeStamp": "1696849967",
"hash": "0x8f70ba770249216bc129ed4a0d6c26087c21468078e0a1630778b0c353d8a715",
"from": "0xe604023b56a4996237f39b498ddd7ba488ba8863",
"to": "0x45a318273749d6eb00f5f6ca3bc7cd3de26d642a",
"value": "4500000000000017",
"contractAddress": "",
"input": "",
"type": "call",
"gas": "22855",
"gasUsed": "0",
"traceId": "0_1",
"isError": "0",
"errCode": ""
},
{
"blockNumber": "1487596",
"timeStamp": "1696855579",
"hash": "0x0e3a0b4800e1de40fe8ceddf2037786ec1a4edd0d140b34e5035934e4eff6d55",
"from": "0xe604023b56a4996237f39b498ddd7ba488ba8863",
"to": "0x45a318273749d6eb00f5f6ca3bc7cd3de26d642a",
"value": "11000000000000017",
"contractAddress": "",
"input": "",
"type": "call",
"gas": "22302",
"gasUsed": "0",
"traceId": "0_1",
"isError": "0",
"errCode": ""
}
]
}
Get 'Internal Transactions' by Transaction Hash
Returns the list of internal transactions performed within a transaction.
Copy https://api.taikoscan.io/api
?module=account
&action=txlistinternal
&txhash=0x5af06371c532b74aa3ba568a899b8abd8834b8a4beeeaf66bbdb5cc5784cdaa5
&apikey=YourApiKeyToken
Request Response
Sample Response
Copy {
"status": "1",
"message": "OK",
"result": [
{
"blockNumber": "4110738",
"timeStamp": "1702101863",
"from": "0xe604023b56a4996237f39b498ddd7ba488ba8863",
"to": "0x45a318273749d6eb00f5f6ca3bc7cd3de26d642a",
"value": "4500000000000017",
"contractAddress": "",
"input": "",
"type": "call",
"gas": "22861",
"gasUsed": "0",
"isError": "0",
"errCode": ""
}
]
}
The isError
field returns 0
for successful transactions and 1
for rejected/cancelled transactions.
Get "Internal Transactions" by Block Range
Returns the list of internal transactions performed within a block range, with optional pagination.
Copy https://api.taikoscan.io/api
?module=account
&action=txlistinternal
&startblock=1348
&endblock=13491
&page=1
&offset=2
&sort=asc
&apikey=YourApiKeyToken
Request Response
Sample Response
Copy {
"status": "1",
"message": "OK",
"result": [
{
"blockNumber": "2375",
"timeStamp": "1693885137",
"hash": "0x092d91e012b63330c3dc49e05461bd606c9379fed019639f6a92e0ab2b249bc5",
"from": "0x4200000000000000000000000000000000000004",
"to": "0x4200000000000000000000000000000000000009",
"value": "10000000000000000",
"contractAddress": "",
"input": "",
"type": "call",
"gas": "405031",
"gasUsed": "44162",
"traceId": "0_1_1",
"isError": "0",
"errCode": ""
},
{
"blockNumber": "2375",
"timeStamp": "1693885137",
"hash": "0x092d91e012b63330c3dc49e05461bd606c9379fed019639f6a92e0ab2b249bc5",
"from": "0x4200000000000000000000000000000000000009",
"to": "0xa9b8fc5b35e651a41a35357c20c7c638cf0440e6",
"value": "10000000000000000",
"contractAddress": "",
"input": "",
"type": "call",
"gas": "349221",
"gasUsed": "0",
"traceId": "0_1_1_1_1",
"isError": "0",
"errCode": ""
}
]
}
The isError
field returns 0
for successful transactions and 1
for rejected/cancelled transactions.
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.
Copy https://api.taikoscan.io/api
?module=account
&action=tokentx
&contractaddress=0xA51894664A773981C6C112C43ce576f315d5b1B6
&address=0x8e0d09b41963BbECAcdA3A7104f2DC900604e295
&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.
Request Response
Sample Response
Copy {
"status": "1",
"message": "OK-Missing/Invalid API Key, rate limit of 1/5sec applied",
"result": [
{
"blockNumber": "420",
"timeStamp": "1716816767",
"hash": "0x90cd4fcf3033706447ae21b065e2cab34499af0730eba1c25d4c1ffd8b912bfa",
"nonce": "2",
"blockHash": "0xb84999f47f9019be7fb510e1c47afefa3fc1d6d7ebcb144cc41c18cd3242f125",
"from": "0xf8279bad8cb76b96de38365a05984b7b8f009b17",
"contractAddress": "0xa51894664a773981c6c112c43ce576f315d5b1b6",
"to": "0x8e0d09b41963bbecacda3a7104f2dc900604e295",
"value": "15000000000000000000",
"tokenName": "Wrapped Ether",
"tokenSymbol": "WETH",
"tokenDecimal": "18",
"transactionIndex": "11",
"gas": "2473274",
"gasPrice": "1000000000",
"gasUsed": "2190281",
"cumulativeGasUsed": "3367619",
"input": "deprecated",
"confirmations": "315"
},
{
"blockNumber": "422",
"timeStamp": "1716816827",
"hash": "0x9f9fd12e378538bb915819a6bbfa7186d92af27922d0ba3c709f7f80952bf779",
"nonce": "4",
"blockHash": "0xd9bbac424e12b6046428adeb3f59867aef91423af851138a3500bce637de688b",
"from": "0xf8279bad8cb76b96de38365a05984b7b8f009b17",
"contractAddress": "0xa51894664a773981c6c112c43ce576f315d5b1b6",
"to": "0x8e0d09b41963bbecacda3a7104f2dc900604e295",
"value": "20000000000000000",
"tokenName": "Wrapped Ether",
"tokenSymbol": "WETH",
"tokenDecimal": "18",
"transactionIndex": "2",
"gas": "197847",
"gasPrice": "3000000000",
"gasUsed": "153764",
"cumulativeGasUsed": "376174",
"input": "deprecated",
"confirmations": "313"
}
]
}
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.
Copy https://api.taikoscan.io/api
?module=account
&action=tokennfttx
&contractaddress=0x56b0D8d04de22f2539945258ddB288C123026775
&address=0x296B77f8E72068953F9238EeCAa7d5C99da3649d
&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.
Request Response
Sample Response
Copy {
"status": "1",
"message": "OK-Missing/Invalid API Key, rate limit of 1/5sec applied",
"result": [
{
"blockNumber": "34",
"timeStamp": "1716801215",
"hash": "0xd326d677a6c19184a2a827057a3e58921407eb3ed559d37b224a7f3d29dac976",
"nonce": "1",
"blockHash": "0xd67610351411e87b7f13b588155ffc413e5a63f2431a5fd27cac7a00bcac932f",
"from": "0x0000000000000000000000000000000000000000",
"contractAddress": "0x56b0d8d04de22f2539945258ddb288c123026775",
"to": "0x296b77f8e72068953f9238eecaa7d5c99da3649d",
"tokenID": "0",
"tokenName": "Taikonauts",
"tokenSymbol": "TKN",
"tokenDecimal": "0",
"transactionIndex": "1",
"gas": "7118007",
"gasPrice": "1",
"gasUsed": "5153309",
"cumulativeGasUsed": "5290349",
"input": "deprecated",
"confirmations": "708"
},
{
"blockNumber": "34",
"timeStamp": "1716801215",
"hash": "0xd326d677a6c19184a2a827057a3e58921407eb3ed559d37b224a7f3d29dac976",
"nonce": "1",
"blockHash": "0xd67610351411e87b7f13b588155ffc413e5a63f2431a5fd27cac7a00bcac932f",
"from": "0x0000000000000000000000000000000000000000",
"contractAddress": "0x56b0d8d04de22f2539945258ddb288c123026775",
"to": "0x296b77f8e72068953f9238eecaa7d5c99da3649d",
"tokenID": "1",
"tokenName": "Taikonauts",
"tokenSymbol": "TKN",
"tokenDecimal": "0",
"transactionIndex": "1",
"gas": "7118007",
"gasPrice": "1",
"gasUsed": "5153309",
"cumulativeGasUsed": "5290349",
"input": "deprecated",
"confirmations": "708"
}
]
}
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.
Copy https://api.taikoscan.io/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.
Request Response
Sample Response
Copy {
"status":"1",
"message":"OK",
"result":[
{
"blockNumber":"13472395",
"timeStamp":"1634973285",
"hash":"0x643b15f3ffaad5d38e33e5872b4ebaa7a643eda8b50ffd5331f682934ee65d4d",
"nonce":"41",
"blockHash":"0xa5da536dfbe8125eb146114e2ee0d0bdef2b20483aacbf30fed6b60f092059e6",
"transactionIndex":"100",
"gas":"140000",
"gasPrice":"52898577246",
"gasUsed":"105030",
"cumulativeGasUsed":"11739203",
"input":"deprecated",
"contractAddress":"0x76be3b62873462d2142405439777e971754e8e77",
"from":"0x1e63326a84d2fa207bdfa856da9278a93deba418",
"to":"0x83f564d180b58ad9a02a449105568189ee7de8cb",
"tokenID":"10371",
"tokenValue":"1",
"tokenName":"parallel",
"tokenSymbol":"LL",
"confirmations":"1447769"
},
{
"blockNumber":"14049909",
"timeStamp":"1642781541",
"hash":"0x58353aab15a4b5a77333b87619edaa749c7f3cf8bb2263a1c0865d73bf1264bd",
"nonce":"4",
"blockHash":"0x1e88a63a4cb4086a747644b8ab7ff3434540930f3029eacb8add08b15974fdc9",
"transactionIndex":"114",
"gas":"253032",
"gasPrice":"225052869211",
"gasUsed":"184899",
"cumulativeGasUsed":"6855790",
"input":"deprecated",
"contractAddress":"0x76be3b62873462d2142405439777e971754e8e77",
"from":"0x83f564d180b58ad9a02a449105568189ee7de8cb",
"to":"0x80833dc92d326a81d0cb74982a8e6f1a3887f837",
"tokenID":"10371",
"tokenValue":"1",
"tokenName":"parallel",
"tokenSymbol":"LL",
"confirmations":"870255"
},
{
"blockNumber":"14067255",
"timeStamp":"1643012777",
"hash":"0x3222b5f71e577c2551e17701eaf39b308b976bbe6bf6ce3f8c20549527b9d6ae",
"nonce":"7",
"blockHash":"0x236cfed8b42fa6cb8956f6e7b889797047d9af0883066b1f3be8284beda16e17",
"transactionIndex":"172",
"gas":"56873",
"gasPrice":"69434775835",
"gasUsed":"52073",
"cumulativeGasUsed":"17181952",
"input":"deprecated",
"contractAddress":"0x76be3b62873462d2142405439777e971754e8e77",
"from":"0x9d48305f859a0006b57da25c80af62ecb8e5c6a2",
"to":"0x83f564d180b58ad9a02a449105568189ee7de8cb",
"tokenID":"10372",
"tokenValue":"1",
"tokenName":"parallel",
"tokenSymbol":"LL",
"confirmations":"852909"
}
]
}