zapi.
APIsPricingDocsMCP
APIsPricingDocsMCP
Sign in
zapi.
APIsPricingDocsMCP
APIsPricingDocsMCP
Sign in
Finance/Blockchain Info
Logo Blockchain Info

Blockchain Info

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

2 endpoints2 endpoints on this scraper324 calls324 calls so farupdated last monthLast updated 8/21/2026, 2:24:06 AMBusy: 10+ calls so farllms.txt
Endpoints2

2/2 passing
checked 20 hours ago · daily 01:00 WIB

Chart

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

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

Chart
index.ts
// 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);
Recommended · typed errors, safe retries and bulk jobsSDK reference

Full reference

2 endpoints · plain text
GET
Chart/v1/finance:blockchain-info/chart
6 params

One 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.zapi.ink/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."
}
GET
Stats/v1/finance:blockchain-info/stats
0 params

Current Bitcoin network snapshot — 20 fields, one flat object, no list.

Parameters

This endpoint takes no parameters.

Request

curl -X GET "https://api.zapi.ink/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

financepluang

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.

1.7M1.7M calls so far1dResponses cached for 1d
Busy: 10+ calls so far

IDX (Bursa Efek Indonesia)

financeidx

Data Bursa Efek Indonesia: ringkasan saham & indeks, top movers, broker, emiten, laporan keuangan, berita, dan passthrough ke ratusan endpoint /primary/.

756.1K756.1K calls so far1dResponses cached for 1d
Busy: 10+ calls so far

TradingView

financetradingview

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

341.4K341.4K calls so far1dResponses cached for 1d
Busy: 10+ calls so far

Stockbit

financestockbit

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

115.5K115.5K calls so far1dResponses cached for 1d
Busy: 10+ calls so far

Investing

financeinvesting

Data pasar finansial lengkap — quote saham/forex/crypto/komoditas, teknikal, OHLCV historis, berita, analisis, dan kalender ekonomi.

69.6K69.6K calls so far1hResponses cached for 1h
Busy: 10+ calls so far

Binance Futures

financebinance-futures

USD-M perpetual futures market data: funding, premium index, open interest, long/short ratios, candles and depth.

40.3K40.3K calls so far10mResponses cached for 10m
Busy: 10+ calls so far
zapi.

One key, one response shape. We keep the scrapers working.

Get an API key
ProductBrowse APIsPricingDocsMCP server
DevelopersSDK on npmGitHubOpenAPI specllms.txt
SupportReport an issueDiscord
LegalTermsPrivacyCookiesAUPRefunds
© 2026 ZapiPublic web data, one API.
zapi.