How to get unconfirmed-transactions count by API

1

This site shows counts of unconfirmed transactions.

And there is a API that returns in json format.

https://blockchain.info/ja/unconfirmed-transactions?format=json

But I couldn't find the count in the json.

How can I get the count by using this API?

ironsand

Posted 2017-12-23T01:08:43.013

Reputation: 111

Their server don't return the count. You can get the count by executing 'javascript:console.log(count);' in the URL bar when you are in https://blockchain.info/unconfirmed-transactions

Chak 2017-12-23T02:54:05.053

If you want their mempool count: https://blockchain.info/q/unconfirmedcount
However, I'm not sure why their mempool transaction count is different than their "unconfirmed transaction count"

Chak 2017-12-23T03:20:22.110

No answers