Blockchain.info Simple Query API

-1

Based on API documentation one can use multiple addresses (separated by '|' to query the balances.

E.g.: https://blockchain.info/q/addressbalance/1EzwoHtiXB4iFwedPr49iywjZn2nnekhoj|1Kr6QSydW9bFQG1mXiPNNu6WpJGmUa9i1g?confirmations=6 But every time I receive error message: "This Address ledger is too large to filter" and the pipe (|) is being replaced with %7C.

Single address works smoothly.

Who knows how to get it to work?

(Once upon a time I tried to ask some questions directly from blockchain.info. Still waiting...)

melaxon

Posted 2019-11-02T19:23:15.103

Reputation: 9

2One of the addresses you are querying has too many transactions. Likely a limit set by the API provider.m1xolyd1an 2019-11-03T03:56:46.200

@m1xolyd1an: Looks like you're correct. The first address has more than 3,500 associated transactions, the second almost 180k.Murch 2019-11-03T06:35:07.773

What prevents you from first querying one and then the second address, if single addresses work?Murch 2019-11-03T06:35:12.573

@m1xolyd1an - That is! Thanks. murch - blockchain.info requests to limit the rate to 1 request per 10 seconds. But I found how to query xpub instead. This possibly helpsmelaxon 2019-11-03T14:22:54.650

No answers