Posts

Showing posts with the label Insight API: txs json shows only 10 tx?

Insight API: txs json shows only 10 tx?

Insight API: txs json shows only 10 tx? I have an Insight API Server running, it's fully synced and working. I would like to get a json to receive every tx within a block. On http://ift.tt/1kDNrYu it says I have to use: Transactions by Block /insight-api/txs/?block=HASH /insight-api/txs/?block=00000000fa6cf7367e50ad14eb0ca4737131f256fc4c5841fd3c3f140140e6b6 For example we take block #301453. This block has 725 transactions. http://ift.tt/2DsQpe4 If I use the api to get the json file with this link: http://localhost:3001/insight-api/txs/?block=00000000000000004dff81aadf782cceb8a2d082f0f255472791c8bb2984e958 ... then it shows the first 10 transactions only (numbers 0 - 9). But there are 725 tx in this block. It looks like the number 10 are those addresses are the first who are displayed. If i scroll further down, more transactions appear. But why does the json request only show 10 txs? How can I get ALL transactions in this block - as the documentations mentions? htt...