zapi.
APIsPricingDocsMCP
APIsPricingDocsMCPSign in
zapi.
APIsPricingDocsMCP
APIsPricingDocsMCPSign in
On this page
  • Playground
  • Code examples
  • Full reference
  • Related APIs
Finance/Blockchain Info
Logo Blockchain Info

Blockchain Info

One named on-chain time series from blockchain.info's chart API.

Endpoints
2
Requests
322
Updated
5 hours ago
For LLMs
llms.txt
Endpoint healthnot yet measured
  • chartnot measured
  • statsnot measured
no measurements yetdaily 01:00 WIB

Playground

2 endpoints
GET/v1/finance:blockchain-info/chart15m cache6 paramschecking key…
Parameters
chartenum

Chart name. mempool-size, mempool-count, mempool-growth and transactions-per-second publish every 15 minutes; utxo-count hourly; avg-confirmation-time every 6 hours; the rest daily.

timespanstring

Window as Ndays, Nweeks, Nyears, Nhours or all. Upstream default is 1 week for mempool charts, 1 year elsewhere.

startstring

Start date (YYYY-MM-DD). Combine with timespan to window the series.

rollingAveragestring

Average each point over this duration. Same grammar as timespan.

sampledenum

true downsamples to ~1500 points. Default false, which returns full resolution.

limitnumber

Keep only the most recent N points. Omit for everything the upstream returned.

·
Response
EXAMPLE
{
  "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."
}

Code examples

Chart
zpi-sdkrecommended
// 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);
Full SDK reference →
request.sh
curl -X GET "https://api.zpi.web.id/v1/finance:blockchain-info/chart?chart=transactions-per-second&timespan=30days&start=2026-06-01&rollingAverage=8hours&sampled=false&limit=5000" \
  -H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"

Full reference

2 endpoints · plain text
GETChart/v1/finance:blockchain-info/chartOne named on-chain time series from blockchain.info's chart API.

Parameters

chartenumoptional
Chart name. mempool-size, mempool-count, mempool-growth and transactions-per-second publish every 15 minutes; utxo-count hourly; avg-confirmation-time every 6 hours; the rest daily. Values: mempool-size, mempool-count, mempool-growth, transactions-per-second, utxo-count, avg-confirmation-time, median-confirmation-time, market-price, market-cap, trade-volume, total-bitcoins, avg-block-size, blocks-size, n-transactions, n-transactions-total, n-transactions-per-block, n-transactions-excluding-popular, n-unique-addresses, hash-rate, difficulty, miners-revenue, transaction-fees, transaction-fees-usd, cost-per-transaction, cost-per-transaction-percent, output-volume, estimated-transaction-volume, estimated-transaction-volume-usd, my-wallet-n-users.
timespanstringoptional
Window as Ndays, Nweeks, Nyears, Nhours or all. Upstream default is 1 week for mempool charts, 1 year elsewhere.
startstringoptional
Start date (YYYY-MM-DD). Combine with timespan to window the series.
rollingAveragestringoptional
Average each point over this duration. Same grammar as timespan.
sampledenumoptional
true downsamples to ~1500 points. Default false, which returns full resolution. Values: true, false.
limitnumberoptional
Keep only the most recent N points. Omit for everything the upstream returned.

Request

curl -X GET "https://api.zpi.web.id/v1/finance:blockchain-info/chart?chart=transactions-per-second&timespan=30days&start=2026-06-01&rollingAverage=8hours&sampled=false&limit=5000" \
  -H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"

Example response

{
  "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."
}
GETStats/v1/finance:blockchain-info/statsCurrent Bitcoin network snapshot — 20 fields, one flat object, no list.

Parameters

This endpoint takes no parameters.

Request

curl -X GET "https://api.zpi.web.id/v1/finance:blockchain-info/stats" \
  -H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"

Example response

{
  "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
}

Related APIs

More in finance

Pluang

finance/pluang

Data pasar Pluang lintas aset: order book, running trade, tradebook dan ringkasan broker per saham IDX, plus saham Amerika, emas, kripto, sinyal analis dan berita.

27.9K calls·1d cache

Binance Vision

finance/binance-vision

Binance's public bulk archive: klines, 5-minute open-interest and long/short metrics, funding, book depth and liquidations, back to 2017.

7.9K calls·1d cache

TradingView

finance/tradingview

Screener, charts, technical indicators, fundamentals, news and the macro calendar across 16 markets — Indonesian equities, US equities, crypto, forex and futures.

57K calls·1d cache

Stockbit

finance/stockbit

Data saham IDX dari Stockbit: harga, chart intraday, profil emiten, diskusi komunitas, dan kamus investasi.

17.7K calls·1d cache

Mempool Space

finance/mempool-space

Recommended fee tiers in sat/vB, as mempool.space's own estimator sees them.

1.1K calls·2m cache

Etherscan

finance/etherscan

Current gas price tiers and base fee, from Etherscan's V2 multichain API.

683 calls·30s cache
Browse APIsPricingDocsMCP serverGet an API key
zapi.One key, one response shape.
TermsPrivacyCookiesAUPRefunds© 2026