Blockchair Updates

November 9, 2021

Verify ERC-20 tokens at Blockchair!

Ethereum projects can verify their ERC- 20 tokens and provide users with useful links such as social media, documentation and contract audits. This will speed up the cumbersome process users often must go to for separating real from fake tokens.

October 25, 2021

Blockchair website available in Japanese language

We are happy to announce that the best block explorer ever is now available in Japanese!

October 24, 2021

Blockchair website available in Japanese language

  • ERC-20 and ERC-721 transfers are now ordered within transactions as they were executed
  • Added ?offset={:offset} option to the Cardano address endpoint (https://api.blockchair.com/{:ada_chain}/raw/address/{:address}₀) that allows to paginate the list of latest transactions
October 18, 2021

Added ERC-721 support for Ethereum blockchain

New endpoints and options:

  • https://api.blockchair.com/ethereum/erc-721/tokens infinitable (the output is the same as for ERC-20 except for there's no decimals).
  • https://api.blockchair.com/ethereum/erc-721/transactions infinitable (also no token_decimals, and token_id is used instead of value Examples:
    • Find most used contracts over the last month: https://api.blockchair.com/ethereum/erc-721/transactions?q=time(~P1M)&a=token_address,token_name,count()&s=count()(desc)&limit=10
    • Owner change history by token id: https://api.blockchair.com/ethereum/erc-721/transactions?q=token_address(0xbd3531da5cf5857e7cfaa92426877b022e612cf8),token_id(5177)
    • Find tokens that changed hands many times: https://api.blockchair.com/ethereum/erc-721/transactions?a=token_address,token_id,count()&s=count()(desc)&limit=10
  • https://api.blockchair.com/ethereum/stats now yields statistical data on ERC-721s in the layer_2.erc_721 array: tokens is the total number of NFTs, transactions - the total number of transfers, tokens_24h - new NFTs over the last 24 hours, transactions_24h - token transfers over the last 24 hours
  • Find ERC-721 transfers inside of a transaction: https://api.blockchair.com/ethereum/dashboards/transaction/{:hash}?erc_721=true. Example: https://api.blockchair.com/ethereum/dashboards/transaction/0x6e7dbd3e3835f5c08ac8a0e26216df17e9aa9d1b6956fc9f0c56c19a085ad888?erc_721=true
  • List ERC-721 tokens for an address: https://api.blockchair.com/ethereum/dashboards/address/{:address}?erc_721=true.
    Example: https://api.blockchair.com/ethereum/dashboards/address/0x943a48498c9d622273e214c1757e436f76a113ce?erc_721=true&limit=0. This option lists token ids
  • ERC-721 contract dashboard: https://api.blockchair.com/ethereum/erc-721/{:address}/stats.
    Example: https://api.blockchair.com/ethereum/erc-721/0x1dfe7ca09e99d10835bf73044a23b73fc20623df/stats
  • ERC-721 contract inventory (token list): https://api.blockchair.com/ethereum/erc-721/{:address}/inventory. Available params: ?limit={:limit} and ?offset={:offset}. Example: https://api.blockchair.com/ethereum/erc-721/0x2E956Ed3D7337F4Ed4316A6e8F2EdF74BF84bb54/inventory?limit=100&offset=100. The list returns transaction_count, first_time (creation time), last_time (last ownership change time), first_owner, and last_owner (current owner).

Please note that some of popular NFTs may either not follow the ERC-721 standard at all or follow the ERC-20 standard instead. In the first case, our API won't return any data for such NFTs. In the second case, such contracts will be treated as ERC-20s. ERC-721 functionality is launched in beta mode, it's possible there will be compatibility-breaking changes. This functionality is available for the Goerli Testnet as well.

October 7, 2021

We’ve launched 2 new stablecoin explorers for USDC and BUSD

In addition to the USDT explorer, now you can check USDC and BUSD circulation on each blockchain, and their latest transactions.

October 5, 2021

We’ve launched a USDT stablecoin explorer

Check out the total amount USDT in circulation, how it’s divided per blockchain, and what the latest transactions are:

August 26, 2021

Blockchair becomes the official Bitcoin.com explorer

Bitcoin.com explorer is now powered by Blockchair! That means you'll get faster query results and powerful new block explorer features like the ability to search for embedded text data, enhanced filter options, and a privacy auditor for Bitcoin transactions.

August 23, 2021

Added basic SLP support for Bitcoin Cash

New endpoints and options:

  • https://api.blockchair.com/bitcoin-cash/stats now yields statistical data on SLP in the layer_2.slp array: tokens is the total number of SLP tokens, transactions - the total number of SLP transfers, tokens_24h - new SLP tokens over the last 24 hours, transactions_24h - token transfers over the last 24 hours
  • Find SLP transfers inside of a transaction: https://api.blockchair.com/bitcoin-cash/dashboards/transaction/{:hash}?slp=true. Example: https://api.blockchair.com/bitcoin-cash/dashboards/transaction/ca851afc516f6d1488924f4a064abdd8b82b45bc8a5890bee8aba58a1314f498?slp=true (valid SEND transaction), https://api.blockchair.com/bitcoin-cash/dashboards/transaction/71b31ecaf916fe2da690a61c45978542a654185caba643c3eda2a87f38f88d31?slp=true (invalid MINT transaction`)
August 20, 2021

API Changelog v.2.0.87

For all API requests, the context array now yields market_price_usd value. It contains the current USD price of the blockchain's main token in request. E.g. all https://api.blockchair.com/zcash/... requests show ZEC price in context.market_price_usd. For Ethereum, it's always the ETH price, even if some token data is requested. This change also deprecates context.price_usd for EOS and Tezos in favour of context.market_price_usd.


  • New number({:n}) function for aggregations that returns a number. It may be useful when you are too lazy to divide some values on your side, for example, when you're calculating the average interval between blocks in seconds: https://api.blockchair.com/bitcoin/blocks?a=date,f(number(86400)/count()). Our API can now also serve as your calculator for any needs: https://api.blockchair.com/bitcoin/blocks?a=f(number(2)*number(2))&limit=1 returns 4.
  • Tweaked suggested_transaction_fee_per_byte_sat for Dogecoin (in https://api.blockchair.com/dogecoin/stats) to honour the minimum fee of 1 DOGE per transaction
  • The following Ethereum endpoints are now also available for Ethereum Goerli Testnet:
    • https://api.blockchair.com/ethereum/testnet/raw/block/{:id|hash}
    • https://api.blockchair.com/ethereum/testnet/raw/transaction/{:hash}
    • https://api.blockchair.com/ethereum/testnet/push/transaction
    • https://api.blockchair.com/ethereum/testnet/addresses
    • https://api.blockchair.com/ethereum/testnet/state/changes/block/{:id}
August 19, 2021

API Changelog v.2.0.86

  • Error code 435 is now returned if you're using an API key and going over the maximum requests in parallel limit. By default, the limit is daily_request_limit / 10000 request points. Also, by default, it is not enforced: it only comes into effect if our security system notices that your requests significantly overload our servers on a constant basis. This limit supersedes the 5 requests per second limit for premium API plans (which was also not enforced automatically). Example: if you're on a 5000 requests per day plan and do some daily calculations like fetching xpub balances right after the midnight, please try doing this in 2-3 app instances in parallel instead of spawning 1000 instances trying to complete the process in 10 seconds.