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

Reku

Reku OHLCV candles for one coin.

Endpoints
3
Requests
583
Updated
5 hours ago
For LLMs
llms.txt
Endpoint healthnot yet measured
  • chartnot measured
  • pricesnot measured
  • coinsnot measured
no measurements yetdaily 01:00 WIB

Playground

3 endpoints
GET/v1/finance:reku/chart1m cache2 paramschecking key…
Parameters
coinstringrequired

Ticker (BTC) or the numeric coin id from coins

intervalstring

Candle size in whole minutes, or a token like 15m, 4h, 1d, 1w. Minimum 5 minutes. Default 60

·
Response
EXAMPLE
{
  "coin": "BTC",
  "name": "Bitcoin",
  "count": 100,
  "items": [
    {
      "low": 1117760000,
      "date": "2026-08-16T23:00:00.000Z",
      "high": 1117760000,
      "open": 1117760000,
      "close": 1118300000,
      "volume": 0.1964578290843674,
      "openTime": 1786921200000,
      "closeTime": 1786924799999,
      "quoteVolume": 219799420
    },
    {
      "low": 1116520000,
      "date": "2026-08-17T00:00:00.000Z",
      "high": 1119580000,
      "open": 1118300000,
      "close": 1118280000,
      "volume": 0.006625787527614236,
      "openTime": 1786924800000,
      "closeTime": 1786928399999,
      "quoteVolume": 7402301.6826
    },
    {
      "low": 1122350000,
      "date": "2026-08-17T01:00:00.000Z",
      "high": 1124780000,
      "open": 1118280000,
      "close": 1124780000,
      "volume": 0.5992000247168705,
      "openTime": 1786928400000,
      "closeTime": 1786931999999,
      "quoteVolume": 673292144.7125
    },
    {
      "low": 1121800000,
      "date": "2026-08-17T02:00:00.000Z",
      "high": 1129110000,
      "open": 1124780000,
      "close": 1127830000,
      "volume": 0.7329703022669124,
      "openTime": 1786932000000,
      "closeTime": 1786935599999,
      "quoteVolume": 825182023.5156
    },
    {
      "low": 1126200000,
      "date": "2026-08-17T03:00:00.000Z",
      "high": 1129110000,
      "open": 1127830000,
      "close": 1129110000,
      "volume": 0.1802460825180557,
      "openTime": 1786935600000,
      "closeTime": 1786939199999,
      "quoteVolume": 203152777.5563999
    },
    {
      "low": 1128310000,
      "date": "2026-08-17T04:00:00.000Z",
      "high": 1129500000,
      "open": 1129110000,
      "close": 1129500000,
      "volume": 0.005963890127786594,
      "openTime": 1786939200000,
      "closeTime": 1786942799999,
      "quoteVolume": 6735707.0599
    },
    {
      "low": 1127260000,
      "date": "2026-08-17T05:00:00.000Z",
      "high": 1129760000,
      "open": 1129500000,
      "close": 1127260000,
      "volume": 0.24658377136074727,
      "openTime": 1786942800000,
      "closeTime": 1786946399999,
      "quoteVolume": 278412129.4932275
    },
    {
      "low": 1129550000,
      "date": "2026-08-17T06:00:00.000Z",
      "high": 1131350000,
      "open": 1127260000,
      "close": 1130560000,
      "volume": 0.18642497467911867,
      "openTime": 1786946400000,
      "closeTime": 1786949999999,
      "quoteVolume": 210616358.79427
    }
  ],
  "coinId": 1,
  "dataset": "chart",
  "interval": "60m",
  "provider": "reku",
  "intervalMinutes": 60
}

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:reku", "chart", {
  "coin": "BTC",
  "interval": "60"
});
console.log(data);
Full SDK reference →
request.sh
curl -X GET "https://api.zpi.web.id/v1/finance:reku/chart?coin=BTC&interval=60" \
  -H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"

Full reference

3 endpoints · plain text
GETChart/v1/finance:reku/chartReku OHLCV candles for one coin.

Parameters

coinstringrequired
Ticker (BTC) or the numeric coin id from coins
intervalstringoptional
Candle size in whole minutes, or a token like 15m, 4h, 1d, 1w. Minimum 5 minutes. Default 60

Request

curl -X GET "https://api.zpi.web.id/v1/finance:reku/chart?coin=BTC&interval=60" \
  -H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"

Example response

{
  "coin": "BTC",
  "name": "Bitcoin",
  "count": 100,
  "items": [
    {
      "low": 1117760000,
      "date": "2026-08-16T23:00:00.000Z",
      "high": 1117760000,
      "open": 1117760000,
      "close": 1118300000,
      "volume": 0.1964578290843674,
      "openTime": 1786921200000,
      "closeTime": 1786924799999,
      "quoteVolume": 219799420
    },
    {
      "low": 1116520000,
      "date": "2026-08-17T00:00:00.000Z",
      "high": 1119580000,
      "open": 1118300000,
      "close": 1118280000,
      "volume": 0.006625787527614236,
      "openTime": 1786924800000,
      "closeTime": 1786928399999,
      "quoteVolume": 7402301.6826
    },
    {
      "low": 1122350000,
      "date": "2026-08-17T01:00:00.000Z",
      "high": 1124780000,
      "open": 1118280000,
      "close": 1124780000,
      "volume": 0.5992000247168705,
      "openTime": 1786928400000,
      "closeTime": 1786931999999,
      "quoteVolume": 673292144.7125
    },
    {
      "low": 1121800000,
      "date": "2026-08-17T02:00:00.000Z",
      "high": 1129110000,
      "open": 1124780000,
      "close": 1127830000,
      "volume": 0.7329703022669124,
      "openTime": 1786932000000,
      "closeTime": 1786935599999,
      "quoteVolume": 825182023.5156
    },
    {
      "low": 1126200000,
      "date": "2026-08-17T03:00:00.000Z",
      "high": 1129110000,
      "open": 1127830000,
      "close": 1129110000,
      "volume": 0.1802460825180557,
      "openTime": 1786935600000,
      "closeTime": 1786939199999,
      "quoteVolume": 203152777.5563999
    },
    {
      "low": 1128310000,
      "date": "2026-08-17T04:00:00.000Z",
      "high": 1129500000,
      "open": 1129110000,
      "close": 1129500000,
      "volume": 0.005963890127786594,
      "openTime": 1786939200000,
      "closeTime": 1786942799999,
      "quoteVolume": 6735707.0599
    },
    {
      "low": 1127260000,
      "date": "2026-08-17T05:00:00.000Z",
      "high": 1129760000,
      "open": 1129500000,
      "close": 1127260000,
      "volume": 0.24658377136074727,
      "openTime": 1786942800000,
      "closeTime": 1786946399999,
      "quoteVolume": 278412129.4932275
    },
    {
      "low": 1129550000,
      "date": "2026-08-17T06:00:00.000Z",
      "high": 1131350000,
      "open": 1127260000,
      "close": 1130560000,
      "volume": 0.18642497467911867,
      "openTime": 1786946400000,
      "closeTime": 1786949999999,
      "quoteVolume": 210616358.79427
    }
  ],
  "coinId": 1,
  "dataset": "chart",
  "interval": "60m",
  "provider": "reku",
  "intervalMinutes": 60
}
GETPrices/v1/finance:reku/pricesReku last IDR price per listed coin — a second independent Indonesian quote,

Parameters

querystringoptional
Filter by ticker or name substring
pagenumberoptional
Page number. Default 1
countnumberoptional
Items per page. Default 100, max 200

Request

curl -X GET "https://api.zpi.web.id/v1/finance:reku/prices?query=btc&page=1&count=100" \
  -H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"

Example response

{
  "page": 1,
  "count": 1,
  "items": [
    {
      "low": 195400000,
      "high": 2092240000,
      "name": "Bitcoin",
      "open": 1457810000,
      "coinId": 1,
      "symbol": "BTC",
      "lastPrice": 1322610000,
      "quoteVolume": 9679778638711,
      "changePercent": -9.27
    }
  ],
  "query": "btc",
  "total": 1,
  "dataset": "prices",
  "hasMore": false,
  "nextPage": null,
  "provider": "reku"
}
GETCoins/v1/finance:reku/coinsReku instrument specs — the taker/maker fee, send limits and precision for

Parameters

querystringoptional
Filter by ticker or name substring
tradableenumoptional
Keep only assets that can currently be bought or sold. Default all Values: true, false.
pagenumberoptional
Page number. Default 1
countnumberoptional
Items per page. Default 100, max 500

Request

curl -X GET "https://api.zpi.web.id/v1/finance:reku/coins?query=btc&tradable=true&page=1&count=100" \
  -H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"

Example response

{
  "page": 1,
  "count": 1,
  "items": [
    {
      "logo": "https://images.reku.id/accounts/btc.svg?v=5",
      "name": "Bitcoin",
      "coinId": 1,
      "symbol": "BTC",
      "decimals": 8,
      "enableBuy": true,
      "enableSell": true,
      "maxWithdrawal": 1,
      "minWithdrawal": 0.0004,
      "priceDecimals": 0,
      "volumeDecimals": 0,
      "makerFeePercent": 0.1,
      "takerFeePercent": 0.1,
      "enableWithdrawal": true,
      "withdrawalFeeExternal": 0.00003,
      "withdrawalFeeInternal": 0
    }
  ],
  "query": "btc",
  "total": 1,
  "dataset": "coins",
  "hasMore": false,
  "nextPage": null,
  "provider": "reku",
  "tradable": null
}

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.8K 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