AVAX Blockbook

Status

Status page returns current status of Blockbook and connected backend.

Method: GET

https://avax-blockbook.nownodes.io/api

Example response: 200

{
    "blockbook": {
        "coin": "Avalanche",
        "host": "d7a04e6c21cc",
        "version": "devel",
        "gitCommit": "1322a919",
        "buildTime": "2023-06-08T12:23:48+00:00",
        "syncMode": true,
        "initialSync": false,
        "inSync": true,
        "bestHeight": 43899817,
        "lastBlockTime": "2024-04-07T13:18:55.651396506Z",
        "inSyncMempool": true,
        "lastMempoolTime": "2024-04-07T13:18:55.652386331Z",
        "mempoolSize": 1739,
        "decimals": 18,
        "dbSize": 78219726657,
        "hasFiatRates": true,
        "hasTokenFiatRates": true,
        "currentFiatRatesTime": "2024-04-07T13:15:01.669772329Z",
        "historicalFiatRatesTime": "2024-04-06T00:00:00Z",
        "historicalTokenFiatRatesTime": "2024-04-07T04:04:29.892417631Z",
        "about": "Blockbook - blockchain indexer for Trezor Suite https://trezor.io/trezor-suite. Do not use for any other purpose."
    },
    "backend": {
        "chain": "mainnet",
        "blocks": 43899817,
        "bestBlockHash": "0x7a09efced40aa566b1798cc1a8ea0fabbff797d9b55b5ac324dd723528b8060a",
        "difficulty": "1",
        "version": "v1.11.3"
    }
}

Get block hash

Method: GET

https://avax-blockbook.nownodes.io/api/v2/block-index/<block height>

Example response: 200

{
    "blockHash": "0x7a09efced40aa566b1798cc1a8ea0fabbff797d9b55b5ac324dd723528b8060a"
}

Get transaction

Get transaction returns "normalized" data about transaction, which has the same general structure for all supported coins. It does not return coin specific fields (for example information about Zcash shielded addresses).

Method: GET

https://avax-blockbook.nownodes.io/api/v2/tx/<txid>

Example response: 200

{
    "txid": "0x5d5fdac1135d3e3ecb940a6c9e3e6a0ad0c31006f2272d788ba4a91894ea2e21",
    "vin": [
        {
            "n": 0,
            "addresses": [
                "0x7E4aA755550152a522d9578621EA22eDAb204308"
            ],
            "isAddress": true
        }
    ],
    "vout": [
        {
            "value": "0",
            "n": 0,
            "addresses": [
                "0x9702230A8Ea53601f5cD2dc00fDBc13d4dF4A8c7"
            ],
            "isAddress": true
        }
    ],
    "blockHash": "0xd93acd70822cbb347f072ca8d1289e6f3c984eff1be06d0b3235019621536def",
    "blockHeight": 43899890,
    "confirmations": 8,
    "blockTime": 1712496088,
    "value": "0",
    "fees": "2017158000000000",
    "tokenTransfers": [
        {
            "type": "ERC20",
            "from": "0x7E4aA755550152a522d9578621EA22eDAb204308",
            "to": "0xe0AC48Eb2d74e5b10939Abd6425293baC793b31b",
            "contract": "0x9702230A8Ea53601f5cD2dc00fDBc13d4dF4A8c7",
            "name": "TetherToken",
            "symbol": "USDt",
            "decimals": 6,
            "value": "2780000"
        }
    ],
    "ethereumSpecific": {
        "status": 1,
        "nonce": 600890,
        "gasLimit": 70000,
        "gasUsed": 61126,
        "gasPrice": "33000000000",
        "data": "0xa9059cbb000000000000000000000000e0ac48eb2d74e5b10939abd6425293bac793b31b00000000000000000000000000000000000000000000000000000000002a6b60",
        "parsedData": {
            "methodId": "0xa9059cbb",
            "name": ""
        }
    }
}

Get transaction specific

Returns transaction data in the exact format as returned by backend, including all coin specific fields:

Method: GET

https://avax-blockbook.nownodes.io/api/v2/tx-specific/<txid>

Example response: 200

{
    "tx": {
        "nonce": "0x92b3a",
        "gasPrice": "0x7aef40a00",
        "gas": "0x11170",
        "to": "0x9702230A8Ea53601f5cD2dc00fDBc13d4dF4A8c7",
        "value": "0x0",
        "input": "0xa9059cbb000000000000000000000000e0ac48eb2d74e5b10939abd6425293bac793b31b00000000000000000000000000000000000000000000000000000000002a6b60",
        "hash": "0x5d5fdac1135d3e3ecb940a6c9e3e6a0ad0c31006f2272d788ba4a91894ea2e21",
        "blockNumber": "0x29ddbf2",
        "blockHash": "0xd93acd70822cbb347f072ca8d1289e6f3c984eff1be06d0b3235019621536def",
        "from": "0x7E4aA755550152a522d9578621EA22eDAb204308",
        "transactionIndex": "0x1"
    },
    "receipt": {
        "gasUsed": "0xeec6",
        "status": "0x1",
        "logs": [
            {
                "address": "0x9702230A8Ea53601f5cD2dc00fDBc13d4dF4A8c7",
                "topics": [
                    "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef",
                    "0x0000000000000000000000007e4aa755550152a522d9578621ea22edab204308",
                    "0x000000000000000000000000e0ac48eb2d74e5b10939abd6425293bac793b31b"
                ],
                "data": "0x00000000000000000000000000000000000000000000000000000000002a6b60"
            }
        ]
    }
}

Get address

Returns balances and transactions of an address. The returned transactions are sorted by block height, newest blocks first.

Method: GET

https://avax-blockbook.nownodes.io/api/v2/address/<address>[?page=<page>&pageSize=<size>&from=<block height>&to=<block height>&details=<basic|tokens|tokenBalances|txids|txs>&contract=<contract address>&secondary=usd]

Example response: 200

{
    "page": 1,
    "totalPages": 1,
    "itemsOnPage": 1000,
    "address": "0xE4C48c09833ee49BbEb71AD3D1b7c21DbB50aaf8",
    "balance": "0",
    "unconfirmedBalance": "0",
    "unconfirmedTxs": 0,
    "txs": 0,
    "nonce": "0"
}

Get block

Returns information about block with transactions, subject to paging.

Method: GET

https://avax-blockbook.nownodes.io/api/v2/block/<block height|block hash>

Example response: 200

{
    "page": 1,
    "totalPages": 1,
    "itemsOnPage": 1000,
    "hash": "0xd93acd70822cbb347f072ca8d1289e6f3c984eff1be06d0b3235019621536def",
    "previousBlockHash": "0x91649f7ad455b29b8afa257cd748f3066edf003d02d2db2c7e6de2f7a42df21e",
    "nextBlockHash": "0x40d4fa5f6c349e3a43fcb200b63bfe7d73e5b76ecb70939b222a9af7fb506708",
    "height": 43899890,
    "confirmations": 84,
    "size": 2991,
    "time": 1712496088,
    "version": 0,
    "merkleRoot": "",
    "nonce": "0x0000000000000000",
    "bits": "",
    "difficulty": "0x1",
    "txCount": 7,
    "txs": [
        {
            "txid": "0x9aca22429d8dd8d012b71135ed74fee9019840816ef2ca2b5d3e9e75c19614d8",
            "vin": [
                {
                    "n": 0,
                    "addresses": [
                        "0x7E4aA755550152a522d9578621EA22eDAb204308"
                    ],
                    "isAddress": true
                }
            ],
            "vout": [
                {
                    "value": "0",
                    "n": 0,
                    "addresses": [
                        "0x9702230A8Ea53601f5cD2dc00fDBc13d4dF4A8c7"
                    ],
                    "isAddress": true
                }
            ],
            "blockHash": "0xd93acd70822cbb347f072ca8d1289e6f3c984eff1be06d0b3235019621536def",
            "blockHeight": 43899890,
            "confirmations": 83,
            "blockTime": 1712496088,
            "value": "0",
            "fees": "2017554000000000",
            "tokenTransfers": [
                {
                    "type": "ERC20",
                    "from": "0x7E4aA755550152a522d9578621EA22eDAb204308",
                    "to": "0x9Ed97a9Dab72B503Da18F9Fb7AC10fa8D081487D",
                    "contract": "0x9702230A8Ea53601f5cD2dc00fDBc13d4dF4A8c7",
                    "name": "TetherToken",
                    "symbol": "USDt",
                    "decimals": 6,
                    "value": "19712638"
                }
            ],
            "ethereumSpecific": {
                "status": 1,
                "nonce": 600889,
                "gasLimit": 70000,
                "gasUsed": 61138,
                "gasPrice": "33000000000",
                "data": "0xa9059cbb0000000000000000000000009ed97a9dab72b503da18f9fb7ac10fa8d081487d00000000000000000000000000000000000000000000000000000000012cca7e",
                "parsedData": {
                    "methodId": "0xa9059cbb",
                    "name": ""
                }
            }
        },
        {
            "txid": "0x5d5fdac1135d3e3ecb940a6c9e3e6a0ad0c31006f2272d788ba4a91894ea2e21",
            "vin": [
                {
                    "n": 0,
                    "addresses": [
                        "0x7E4aA755550152a522d9578621EA22eDAb204308"
                    ],
                    "isAddress": true
                }
            ],
            "vout": [
                {
                    "value": "0",
                    "n": 0,
                    "addresses": [
                        "0x9702230A8Ea53601f5cD2dc00fDBc13d4dF4A8c7"
                    ],
                    "isAddress": true
                }
            ],
            "blockHash": "0xd93acd70822cbb347f072ca8d1289e6f3c984eff1be06d0b3235019621536def",
            "blockHeight": 43899890,
            "confirmations": 83,
            "blockTime": 1712496088,
            "value": "0",
            "fees": "2017158000000000",
            "tokenTransfers": [
                {
                    "type": "ERC20",
                    "from": "0x7E4aA755550152a522d9578621EA22eDAb204308",
                    "to": "0xe0AC48Eb2d74e5b10939Abd6425293baC793b31b",
                    "contract": "0x9702230A8Ea53601f5cD2dc00fDBc13d4dF4A8c7",
                    "name": "TetherToken",
                    "symbol": "USDt",
                    "decimals": 6,
                    "value": "2780000"
                }
            ],
            "ethereumSpecific": {
                "status": 1,
                "nonce": 600890,
                "gasLimit": 70000,
                "gasUsed": 61126,
                "gasPrice": "33000000000",
                "data": "0xa9059cbb000000000000000000000000e0ac48eb2d74e5b10939abd6425293bac793b31b00000000000000000000000000000000000000000000000000000000002a6b60",
                "parsedData": {
                    "methodId": "0xa9059cbb",
                    "name": ""
                }
            }
        },
        {
            "txid": "0x168ac8cc127a3e1ea776263ac8e6ffdfea84ccb404526e22b3236b744500afc4",
            "vin": [
                {
                    "n": 0,
                    "addresses": [
                        "0xe93685f3bBA03016F02bD1828BaDD6195988D950"
                    ],
                    "isAddress": true
                }
            ],
            "vout": [
                {
                    "value": "0",
                    "n": 0,
                    "addresses": [
                        "0xCD2E3622d483C7Dc855F72e5eafAdCD577ac78B4"
                    ],
                    "isAddress": true
                }
            ],
            "blockHash": "0xd93acd70822cbb347f072ca8d1289e6f3c984eff1be06d0b3235019621536def",
            "blockHeight": 43899890,
            "confirmations": 83,
            "blockTime": 1712496088,
            "value": "0",
            "fees": "5481510000000000",
            "tokenTransfers": [
                {
                    "type": "ERC20",
                    "from": "0xA5972EeE0C9B5bBb89a5B16D1d65f94c9EF25166",
                    "to": "0x16EFDf7e1F7334337615F7A55a3310aC16146442",
                    "contract": "0x9702230A8Ea53601f5cD2dc00fDBc13d4dF4A8c7",
                    "name": "TetherToken",
                    "symbol": "USDt",
                    "decimals": 6,
                    "value": "2021799598"
                }
            ],
            "ethereumSpecific": {
                "status": 1,
                "nonce": 9472853,
                "gasLimit": 846020,
                "gasUsed": 182717,
                "gasPrice": "30000000000",
                "data": "0x252f7b01000000000000000000000000000000000000000000000000000000000000006c000000000000000000000000a5972eee0c9b5bbb89a5b16d1d65f94c9ef2516600000000000000000000000000000000000000000000000000000000000249f00c21418843912f0b0add5b8663ce6d831963af6c207e028889c879f3143cea7f0c21418843912f0b0add5b8663ce6d831963af6c207e028889c879f3143cea7f00000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000aa54ad3d30af77b60d939ae356e6606de9a4da67583f02b962d2d3f2e481484e90000000000003dba1006cf22bede237a07e121b56d91a491eb7bcdfd1f5907926a9e58338f964a01b17fa006aa5972eee0c9b5bbb89a5b16d1d65f94c9ef25166010000000000000000000000009702230a8ea53601f5cd2dc00fdbc13d4df4a8c700000000000000000000000016efdf7e1f7334337615f7a55a3310ac16146442000000007897d2e90000000000000000000000000000000000000000000000",
                "parsedData": {
                    "methodId": "0x252f7b01",
                    "name": ""
                }
            }
        },
        {
            "txid": "0x8c694bb0f10bf07af93abf3879eddf781ab78a06198c0fc15b191afd41efa32e",
            "vin": [
                {
                    "n": 0,
                    "addresses": [
                        "0xe6c22204ab55652d64401C1fff46A0D9C3627440"
                    ],
                    "isAddress": true
                }
            ],
            "vout": [
                {
                    "value": "62902417838330336",
                    "n": 0,
                    "addresses": [
                        "0x7daC480d20f322D2ef108A59A465CCb5749371c4"
                    ],
                    "isAddress": true
                }
            ],
            "blockHash": "0xd93acd70822cbb347f072ca8d1289e6f3c984eff1be06d0b3235019621536def",
            "blockHeight": 43899890,
            "confirmations": 83,
            "blockTime": 1712496088,
            "value": "62902417838330336",
            "fees": "7255999080000000",
            "tokenTransfers": [
                {
                    "type": "ERC721",
                    "from": "0xe6c22204ab55652d64401C1fff46A0D9C3627440",
                    "to": "0x0000000000000000000000000000000000000000",
                    "contract": "0x7daC480d20f322D2ef108A59A465CCb5749371c4",
                    "name": "Merkly Hyperlane NFT",
                    "symbol": "hMERK",
                    "decimals": 18,
                    "value": "70011184"
                }
            ],
            "ethereumSpecific": {
                "status": 1,
                "nonce": 117,
                "gasLimit": 415536,
                "gasUsed": 273708,
                "gasPrice": "26510000000",
                "data": "0xf5c358c6000000000000000000000000000000000000000000000000000000000000210500000000000000000000000000000000000000000000000000000000042c4930",
                "parsedData": {
                    "methodId": "0xf5c358c6",
                    "name": ""
                }
            }
        },
        {
            "txid": "0xd0b8d11cde51b79a1246fd2ecbb335ad7f49b863a7dd306e384258acd6545849",
            "vin": [
                {
                    "n": 0,
                    "addresses": [
                        "0xC5e42F3421Da0C432d9Bc05436cB18C5E4a0c7C2"
                    ],
                    "isAddress": true
                }
            ],
            "vout": [
                {
                    "value": "0",
                    "n": 0,
                    "addresses": [
                        "0x92b4295BDdF87821aD219C871bD8aAd37Eb3cdbB"
                    ],
                    "isAddress": true
                }
            ],
            "blockHash": "0xd93acd70822cbb347f072ca8d1289e6f3c984eff1be06d0b3235019621536def",
            "blockHeight": 43899890,
            "confirmations": 83,
            "blockTime": 1712496088,
            "value": "0",
            "fees": "3371392500000000",
            "tokenTransfers": [
                {
                    "type": "ERC20",
                    "from": "0xB80D90fcf2Ed0e4FeBE02d2a209109Bf1F62DF95",
                    "to": "0x41aB86EEcBd110a82cA602D032a461f453066F1E",
                    "contract": "0xB31f66AA3C1e785363F0875A1B74E27b85FD66c7",
                    "name": "Wrapped AVAX",
                    "symbol": "WAVAX",
                    "decimals": 18,
                    "value": "8542196121976096168"
                },
                {
                    "type": "ERC20",
                    "from": "0x41aB86EEcBd110a82cA602D032a461f453066F1E",
                    "to": "0xce777419413fb8982043203f7Be675D4E59f6eBD",
                    "contract": "0x420FcA0121DC28039145009570975747295f2329",
                    "name": "COQINU",
                    "symbol": "COQ",
                    "decimals": 18,
                    "value": "100000000000000000000000000"
                }
            ],
            "ethereumSpecific": {
                "status": 1,
                "nonce": 29254,
                "gasLimit": 436638,
                "gasUsed": 128434,
                "gasPrice": "26250000000",
                "data": "0x0ddd588d0000000000000000000000009ad6c38be94206ca50bb0d90783181662f0cfa10000000000000000000000000ce777419413fb8982043203f7be675d4e59f6ebd00000000000000000000000000000000000000000000000077055e7161e9bc0000000000000000000000000000000000000000000052b7d2dcc80cd2e400000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000000000000000b31f66aa3c1e785363f0875a1b74e27b85fd66c7000000000000000000000000420fca0121dc28039145009570975747295f2329",
                "parsedData": {
                    "methodId": "0x0ddd588d",
                    "name": ""
                }
            }
        },
        {
            "txid": "0x6967f177efa86cf6e9632b2a8510730638fb0102e6bffc6eaa31a40d947be304",
            "vin": [
                {
                    "n": 0,
                    "addresses": [
                        "0x6df49AedFFa9A6da9D3AFF2b5e754DB872824F13"
                    ],
                    "isAddress": true
                }
            ],
            "vout": [
                {
                    "value": "0",
                    "n": 0,
                    "addresses": [
                        "0xc0f8C29e3a9A7650a3F642e467d70087819926d6"
                    ],
                    "isAddress": true
                }
            ],
            "blockHash": "0xd93acd70822cbb347f072ca8d1289e6f3c984eff1be06d0b3235019621536def",
            "blockHeight": 43899890,
            "confirmations": 83,
            "blockTime": 1712496088,
            "value": "0",
            "fees": "4777675000000000",
            "tokenTransfers": [
                {
                    "type": "ERC20",
                    "from": "0xc0f8C29e3a9A7650a3F642e467d70087819926d6",
                    "to": "0x6df49AedFFa9A6da9D3AFF2b5e754DB872824F13",
                    "contract": "0xcd1B9810872aeC66d450c761E93638FB9FE09DB0",
                    "name": "Interest Bearing Wootrade Network",
                    "symbol": "xWOO.e",
                    "decimals": 18,
                    "value": "246079"
                },
                {
                    "type": "ERC20",
                    "from": "0xA5025842791224238F5606dB1f8863c87A5A9Dc1",
                    "to": "0x6df49AedFFa9A6da9D3AFF2b5e754DB872824F13",
                    "contract": "0xaBC9547B534519fF73921b1FBA6E672b5f58D083",
                    "name": "Wootrade Network",
                    "symbol": "WOO.e",
                    "decimals": 18,
                    "value": "1695195868356797002932"
                },
                {
                    "type": "ERC20",
                    "from": "0xc0f8C29e3a9A7650a3F642e467d70087819926d6",
                    "to": "0x6df49AedFFa9A6da9D3AFF2b5e754DB872824F13",
                    "contract": "0x1CD7B33Faf4F172146BcBB841C7AdDC96802e6c4",
                    "name": "WOOFi Super Charger Bitcoin",
                    "symbol": "weBTC.b",
                    "decimals": 18,
                    "value": "431848503"
                }
            ],
            "ethereumSpecific": {
                "status": 1,
                "nonce": 96,
                "gasLimit": 193291,
                "gasUsed": 191107,
                "gasPrice": "25000000000",
                "data": "0x441a3e7000000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000019bd7c37",
                "parsedData": {
                    "methodId": "0x441a3e70",
                    "name": ""
                }
            }
        },
        {
            "txid": "0x8c7af305a039ff922d90c6043c56c5079ae1899344b235ee863519f710d07b38",
            "vin": [
                {
                    "n": 0,
                    "addresses": [
                        "0xC5ec7765481F90aCBcC61DE0bb5C7904f2E63077"
                    ],
                    "isAddress": true
                }
            ],
            "vout": [
                {
                    "value": "1100350000000000",
                    "n": 0,
                    "addresses": [
                        "0x6A38D27d00214c2A098167121862d605Fb317433"
                    ],
                    "isAddress": true
                }
            ],
            "blockHash": "0xd93acd70822cbb347f072ca8d1289e6f3c984eff1be06d0b3235019621536def",
            "blockHeight": 43899890,
            "confirmations": 83,
            "blockTime": 1712496088,
            "value": "1100350000000000",
            "fees": "2253675000000000",
            "tokenTransfers": [
                {
                    "type": "ERC20",
                    "from": "0xC5ec7765481F90aCBcC61DE0bb5C7904f2E63077",
                    "to": "0x2371634222FbF2F2310A3473C591911dd12D5c3A",
                    "contract": "0x9702230A8Ea53601f5cD2dc00fDBc13d4dF4A8c7",
                    "name": "TetherToken",
                    "symbol": "USDt",
                    "decimals": 6,
                    "value": "1400"
                }
            ],
            "ethereumSpecific": {
                "status": 1,
                "nonce": 6922,
                "gasLimit": 91436,
                "gasUsed": 90147,
                "gasPrice": "25000000000",
                "data": "0xeb79e7da00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000000010000000000000000000000002371634222fbf2f2310a3473c591911dd12d5c3a00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000003e8c332e0ec0000000000000000000000000000000000000000000000000000000000000000010000000000000000000000009702230a8ea53601f5cd2dc00fdbc13d4df4a8c700000000000000000000000000000000000000000000000000000000000000010000000000000000000000002371634222fbf2f2310a3473c591911dd12d5c3a00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000578",
                "parsedData": {
                    "methodId": "0xeb79e7da",
                    "name": ""
                }
            }
        }
    ]
}

Send transaction

Sends new transaction to backend.

Method: GET

https://avax-blockbook.nownodes.io/api/v2/sendtx/<hex tx data>

Example response: 200

{
  "result": "7c3be24063f268aaa1ed81b64776798f56088757641a34fb156c4f51ed2e9d25"
}

or in case of error

{
  "error": {
    "message": "error message"
  }
}

Tickers list

Returns a list of available currency rate tickers (secondary currencies) for the specified date, along with an actual data timestamp.

Method: GET

https://avax-blockbook.nownodes.io/api/v2/tickers-list/?timestamp=<timestamp>

Example response: 200

{
    "ts": 1600732800,
    "available_currencies": [
        "aed",
        "ars",
        "aud",
        "bch",
        "bdt",
        "bhd",
        "bits",
        "bmd",
        "bnb",
        "brl",
        "btc",
        "cad",
        "chf",
        "clp",
        "cny",
        "czk",
        "dkk",
        "dot",
        "eos",
        "eth",
        "eur",
        "gbp",
        "hkd",
        "huf",
        "idr",
        "ils",
        "inr",
        "jpy",
        "krw",
        "kwd",
        "link",
        "lkr",
        "ltc",
        "mmk",
        "mxn",
        "myr",
        "ngn",
        "nok",
        "nzd",
        "php",
        "pkr",
        "pln",
        "rub",
        "sar",
        "sats",
        "sek",
        "sgd",
        "thb",
        "try",
        "twd",
        "uah",
        "usd",
        "vef",
        "vnd",
        "xag",
        "xau",
        "xdr",
        "xlm",
        "xrp",
        "yfi",
        "zar"
    ]
}

Tickers

Returns currency rate for the specified currency and date. If the currency is not available for that specific timestamp, the next closest rate will be returned. All responses contain an actual rate timestamp.

Method: GET

https://avax-blockbook.nownodes.io/api/v2/tickers/[?currency=<currency>&timestamp=<timestamp>]

Example response (no parameters): 200

{
    "ts": 1712495701,
    "rates": {
        "aed": 178.87,
        "ars": 41913,
        "aud": 74.01,
        "bch": 0.07124703,
        "bdt": 5337.93,
        "bhd": 18.34,
        "bits": 701.41,
        "bmd": 48.7,
        "bnb": 0.08281121,
        "brl": 246.74,
        "btc": 0.00070141,
        "cad": 66.19,
        "chf": 43.93,
        "clp": 45772,
        "cny": 352.25,
        "czk": 1137.74,
        "dkk": 335.2,
        "dot": 5.613576,
        "eos": 47.092358,
        "eth": 0.01429637,
        "eur": 44.89,
        "gbp": 38.54,
        "gel": 130.53,
        "hkd": 381.35,
        "huf": 17536.47,
        "idr": 773796,
        "ils": 182.59,
        "inr": 4056.9,
        "jpy": 7383.76,
        "krw": 65812,
        "kwd": 14.97,
        "link": 2.732856,
        "lkr": 14543.63,
        "ltc": 0.47217554,
        "mmk": 102135,
        "mxn": 801.36,
        "myr": 231.22,
        "ngn": 63054,
        "nok": 522.56,
        "nzd": 80.98,
        "php": 2756.16,
        "pkr": 13517.34,
        "pln": 192.35,
        "rub": 4505.45,
        "sar": 182.69,
        "sats": 70141,
        "sek": 520.01,
        "sgd": 65.72,
        "thb": 1783.5,
        "try": 1562.01,
        "twd": 1564.67,
        "uah": 1888.83,
        "usd": 48.7,
        "vef": 4.88,
        "vnd": 1215928,
        "xag": 1.77,
        "xau": 0.02090374,
        "xdr": 36.73,
        "xlm": 374.419,
        "xrp": 81.628,
        "yfi": 0.00577146,
        "zar": 910.62
    }
}

Example error response (e.g. rate unavailable, incorrect currency...):

{
  "ts":7980386400,
  "rates": {
    "usd": -1
  }
}

Balance history

Returns a balance history for the specified XPUB or address.

Method: GET

https://avax-blockbook.nownodes.io/api/v2/balancehistory/<XPUB|address>?from=<dateFrom>&to=<dateTo>[&fiatcurrency=<currency>&groupBy=<groupBySeconds>]

Example response: 200

[
    {
        "time": 1710075600,
        "txs": 2,
        "received": "0",
        "sent": "0",
        "sentToSelf": "0"
    },
    {
        "time": 1710820800,
        "txs": 1,
        "received": "0",
        "sent": "0",
        "sentToSelf": "0"
    },
    {
        "time": 1710871200,
        "txs": 1,
        "received": "0",
        "sent": "0",
        "sentToSelf": "0"
    },
    {
        "time": 1711483200,
        "txs": 1,
        "received": "0",
        "sent": "0",
        "sentToSelf": "0"
    },
    {
        "time": 1711620000,
        "txs": 1,
        "received": "0",
        "sent": "0",
        "sentToSelf": "0"
    },
    {
        "time": 1711908000,
        "txs": 1,
        "received": "0",
        "sent": "0",
        "sentToSelf": "0"
    }
]

Last updated