3

Like I would do wget -O - http://blockchain.info/q/getblockcount 2>/dev/null for the main net.

o0'.
  • 5,240
  • 6
  • 38
  • 66

2 Answers2

4

Blockchain.info does not track the testnet, but blockexplorer.com does. In fact the API you're using was originally from blockexplorer.com, and blockchain.info simply adopted it.

wget -O - http://blockexplorer.com/testnet/q/getblockcount 2> /dev/null

or shorter

curl http://blockexplorer.com/testnet/q/getblockcount
cdecker
  • 9,319
  • 1
  • 38
  • 61
0

BlockExplorer doesn't work anymore for me (redirecting to testnet.blockexplorer.com which throws a 502) so I found a new alternative:

http://tbtc.blockr.io/api/v1/coin/info

You have to get the "last_block" element.

(For mainnet: http://btc.blockr.io/api/v1/coin/info)

knocte
  • 1,764
  • 1
  • 17
  • 32