One named on-chain time series from blockchain.info's chart API.
chartnot measuredstatsnot measured/v1/finance:blockchain-info/chart15m cache6 paramschecking key…// npm i zpi-sdk
import { ZpiClient } from "zpi-sdk";
const client = new ZpiClient({ apiKey: "zpi_xxxxxxxxxxxxxxxxxxxxxxxx" });
const data = await client.run("finance:blockchain-info", "chart", {
"chart": "transactions-per-second",
"timespan": "30days",
"start": "2026-06-01",
"rollingAverage": "8hours",
"sampled": "false",
"limit": 5000
});
console.log(data);curl -X GET "https://api.zpi.web.id/v1/finance:blockchain-info/chart?chart=transactions-per-second×pan=30days&start=2026-06-01&rollingAverage=8hours&sampled=false&limit=5000" \
-H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"/v1/finance:blockchain-info/chartOne named on-chain time series from blockchain.info's chart API.chartenumoptionaltimespanstringoptionalstartstringoptionalrollingAveragestringoptionalsampledenumoptionallimitnumberoptionalcurl -X GET "https://api.zpi.web.id/v1/finance:blockchain-info/chart?chart=transactions-per-second×pan=30days&start=2026-06-01&rollingAverage=8hours&sampled=false&limit=5000" \
-H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"{
"unit": "Transactions Per Second",
"chart": "transactions-per-second",
"count": 668,
"items": [
{
"date": "2026-08-14T02:30:00.000Z",
"time": 1786674600,
"value": 4.45
},
{
"date": "2026-08-14T02:45:00.000Z",
"time": 1786675500,
"value": 3.066666666666667
},
{
"date": "2026-08-14T03:00:00.000Z",
"time": 1786676400,
"value": 4.733333333333333
},
{
"date": "2026-08-14T03:15:00.000Z",
"time": 1786677300,
"value": 2.2333333333333334
},
{
"date": "2026-08-14T03:30:00.000Z",
"time": 1786678200,
"value": 3.7666666666666666
},
{
"date": "2026-08-14T03:45:00.000Z",
"time": 1786679100,
"value": 6.033333333333333
},
{
"date": "2026-08-14T04:00:00.000Z",
"time": 1786680000,
"value": 5.416666666666667
},
{
"date": "2026-08-14T04:15:00.000Z",
"time": 1786680900,
"value": 23.6
}
],
"total": 668,
"period": "minute",
"dataset": "chart",
"sampled": false,
"provider": "blockchain-info",
"timespan": null,
"description": "The number of Bitcoin transactions added to the mempool per second."
}/v1/finance:blockchain-info/statsCurrent Bitcoin network snapshot — 20 fields, one flat object, no list.This endpoint takes no parameters.
curl -X GET "https://api.zpi.web.id/v1/finance:blockchain-info/stats" \
-H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"{
"date": "2026-08-21T02:22:44.000Z",
"time": 1787278964,
"dataset": "stats",
"txCount": 534117,
"btcMined": 41875000000,
"hashRate": 849165771849.8738,
"provider": "blockchain-info",
"totalBtc": 2007305000000000,
"blocksSize": 220380617,
"difficulty": 127479855693691,
"blocksMined": 134,
"blocksTotal": 963376,
"totalBtcSent": 123512756825852,
"totalFeesBtc": -41875000000,
"marketPriceUsd": 73774.99,
"tradeVolumeBtc": 9765.02,
"tradeVolumeUsd": 720414252.8498001,
"estimatedBtcSent": 16173449886814,
"minersRevenueBtc": 0,
"minersRevenueUsd": 0,
"nextRetargetHeight": 963647,
"minutesBetweenBlocks": 10.1729,
"estimatedTransactionVolumeUsd": 11931961036.652044
}