zapi.
APIsPricingDocsMCP
APIsPricingDocsMCP
Sign in
zapi.
APIsPricingDocsMCP
APIsPricingDocsMCP
Sign in
Finance/Cboe
Logo Cboe

Cboe

Kutipan tertunda Cboe untuk saham dan indeks, termasuk implied volatility 30 hari yang tidak ada di feed kutipan lain.

6 endpoints6 endpoints on this scraper328 calls328 calls so farupdated 2 months agoLast updated 8/8/2026, 10:10:23 AMBusy: 10+ calls so farllms.txt
Endpoints6

6/6 passing
checked 22 hours ago · daily 01:00 WIB

Quote

Kutipan satu simbol. Indeks bisa ditulis `^VIX`, `VIX`, atau `_VIX`.

GET/v1/finance:cboe/quote1m cache1 paramchecking key…
Parameters
symbolstringrequired

Ticker symbol. Equities and ETFs as they trade (AAPL, SPY); indices as VIX, ^VIX or _VIX — VIX, VVIX, VIX1D, VIX9D, VIX3M, VIX6M, GVZ, OVX, SKEW, VXN, RVX, EVZ all resolve. Required.

·
Response
EXAMPLE
{
  "ask": 317.48,
  "bid": 317.47,
  "low": 316.19,
  "asOf": "2026-08-20 15:18:27",
  "high": 320.28,
  "iv30": 24.595,
  "open": 317.42,
  "tick": "down",
  "close": 317.46,
  "price": 317.46,
  "change": 0.63,
  "source": "cboe",
  "symbol": "AAPL",
  "volume": 7521130,
  "askSize": 40,
  "bidSize": 200,
  "iv30Change": 0.054,
  "securityType": "stock",
  "changePercent": 0.1988,
  "lastTradeTime": "2026-08-20T11:03:25",
  "previousClose": 316.83
}

Code

Quote
index.ts
// npm i zpi-sdk
import { ZpiClient } from "zpi-sdk";

const client = new ZpiClient({ apiKey: "zpi_xxxxxxxxxxxxxxxxxxxxxxxx" });

const data = await client.run("finance:cboe", "quote", {
  "symbol": "AAPL"
});
console.log(data);
Recommended · typed errors, safe retries and bulk jobsSDK reference

Full reference

6 endpoints · plain text
GET
Quote/v1/finance:cboe/quote
1 param

Kutipan satu simbol. Indeks bisa ditulis `^VIX`, `VIX`, atau `_VIX`.

Parameters

symbolstringrequired
Ticker symbol. Equities and ETFs as they trade (AAPL, SPY); indices as VIX, ^VIX or _VIX — VIX, VVIX, VIX1D, VIX9D, VIX3M, VIX6M, GVZ, OVX, SKEW, VXN, RVX, EVZ all resolve. Required.

Request

curl -X GET "https://api.zpi.web.id/v1/finance:cboe/quote?symbol=AAPL" \
  -H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"

Example response

{
  "ask": 317.48,
  "bid": 317.47,
  "low": 316.19,
  "asOf": "2026-08-20 15:18:27",
  "high": 320.28,
  "iv30": 24.595,
  "open": 317.42,
  "tick": "down",
  "close": 317.46,
  "price": 317.46,
  "change": 0.63,
  "source": "cboe",
  "symbol": "AAPL",
  "volume": 7521130,
  "askSize": 40,
  "bidSize": 200,
  "iv30Change": 0.054,
  "securityType": "stock",
  "changePercent": 0.1988,
  "lastTradeTime": "2026-08-20T11:03:25",
  "previousClose": 316.83
}
GET
History/v1/finance:cboe/history
5 params

Daily history of a CBOE volatility index, back to the day it launched.

Parameters

symbolstringrequired
Volatility index. GVZ (gold, from 2009-09-18), VIX (from 1990-01-02), VVIX, VIX1D, VIX9D, VIX3M, VIX6M, OVX, SKEW, VXN, RVX, EVZ. Required.
fromstringoptional
Earliest session date, YYYY-MM-DD. VIX rows before 1992 repeat the close in every OHLC column — a synthetic backfill, not a real session range.
tostringoptional
Latest session date, YYYY-MM-DD
orderenumoptional
desc newest first (default), asc oldest first Values: desc, asc.
lengthnumberoptional
Sessions to return (default 250, max 5000). total reports how many matched.

Request

curl -X GET "https://api.zpi.web.id/v1/finance:cboe/history?symbol=GVZ&from=2026-01-01&to=2026-08-19&order=desc&length=250" \
  -H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"

Example response

{
  "to": "2026-08-19",
  "from": "2026-01-01",
  "count": 158,
  "items": [
    {
      "date": "2026-08-19",
      "close": 26.68
    },
    {
      "date": "2026-08-18",
      "close": 23.98
    },
    {
      "date": "2026-08-17",
      "close": 25.12
    },
    {
      "date": "2026-08-14",
      "close": 23.92
    },
    {
      "date": "2026-08-13",
      "close": 23.87
    },
    {
      "date": "2026-08-12",
      "close": 25.58
    }
  ],
  "order": "desc",
  "total": 158,
  "symbol": "GVZ",
  "dataset": "history",
  "provider": "cboe",
  "hasIntraday": false
}
GET
Options/v1/finance:cboe/options
5 params

The full delayed option chain for one symbol, with greeks and open interest.

Parameters

symbolstringrequired
Underlying symbol with listed options — equities and ETFs as they trade (AAPL, SPY), indices as VIX, ^VIX or _VIX. Volatility indices other than VIX (GVZ, OVX, SKEW) have no listed chain. Required.
expirystringoptional
Keep one expiration, YYYY-MM-DD. expirations lists what the chain holds.
typeenumoptional
Keep calls or puts only Values: call, put.
strikenumberoptional
Keep one strike price
lengthnumberoptional
Contracts to return (default 100, max 1000). total reports how many matched.

Request

curl -X GET "https://api.zpi.web.id/v1/finance:cboe/options?symbol=VIX&expiry=2026-09-16&type=call&strike=20&length=100" \
  -H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"

Example response

{
  "asOf": "2026-08-20 15:18:24",
  "type": "call",
  "count": 1,
  "items": [
    {
      "ask": 1.01,
      "bid": 0.97,
      "rho": -0.0007,
      "type": "call",
      "vega": 0.0181,
      "delta": 0.3649,
      "gamma": 0.0828,
      "theta": -0.0311,
      "change": 0.06,
      "strike": 20,
      "volume": 26149,
      "askSize": 25101,
      "bidSize": 5,
      "contract": "VIX260916C00020000",
      "lastPrice": 0.97,
      "expiration": "2026-09-16",
      "theoretical": 0.9782,
      "openInterest": 279390,
      "changePercent": 6.59341,
      "lastTradeTime": "2026-08-20T11:01:43",
      "previousClose": 0.909999996423721,
      "impliedVolatility": 0.9427
    }
  ],
  "total": 1,
  "expiry": "2026-09-16",
  "strike": 20,
  "symbol": "^VIX",
  "dataset": "options",
  "provider": "cboe",
  "expirations": [
    "2026-08-26",
    "2026-09-02",
    "2026-09-09",
    "2026-09-16",
    "2026-09-23",
    "2026-10-21"
  ],
  "underlyingPrice": 15.61
}
GET
PCR/v1/finance:cboe/pcr
2 params

Daily put/call ratios with volume and open interest, per product family.

Parameters

datestringoptional
Session date, YYYY-MM-DD, from November 2019 onward. Omit for the most recent published session.
productstringoptional
Keep one product family, e.g. SUM OF ALL PRODUCTS, INDEX OPTIONS, EQUITY OPTIONS, CBOE VOLATILITY INDEX (VIX), OEX. Omit for all of them.

Request

curl -X GET "https://api.zpi.web.id/v1/finance:cboe/pcr?date=2026-08-19&product=SPX+%2B+SPXW" \
  -H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"

Example response

{
  "date": "2026-08-19",
  "count": 23,
  "items": [
    {
      "product": "SUM OF ALL PRODUCTS",
      "putVolume": 5872412,
      "callVolume": 7328387,
      "totalVolume": 13200799,
      "putCallRatio": 0.8,
      "putOpenInterest": 299340079,
      "callOpenInterest": 392251340,
      "totalOpenInterest": 691591419
    },
    {
      "product": "INDEX OPTIONS",
      "putVolume": 2688033,
      "callVolume": 2784472,
      "totalVolume": 5472505,
      "putCallRatio": 0.97,
      "putOpenInterest": 22211122,
      "callOpenInterest": 24652833,
      "totalOpenInterest": 46863955
    },
    {
      "product": "EXCHANGE TRADED PRODUCTS",
      "putVolume": 1679646,
      "callVolume": 1627865,
      "totalVolume": 3307511,
      "putCallRatio": 1.03,
      "putOpenInterest": 100977357,
      "callOpenInterest": 89993567,
      "totalOpenInterest": 190970924
    },
    {
      "product": "EQUITY OPTIONS",
      "putVolume": 1504733,
      "callVolume": 2916050,
      "totalVolume": 4420783,
      "putCallRatio": 0.52,
      "putOpenInterest": 176151600,
      "callOpenInterest": 277604940,
      "totalOpenInterest": 453756540
    },
    {
      "product": "CBOE VOLATILITY INDEX (VIX)",
      "putVolume": 166001,
      "callVolume": 556997,
      "totalVolume": 722998,
      "putCallRatio": 0.3,
      "putOpenInterest": 3986281,
      "callOpenInterest": 10969150,
      "totalOpenInterest": 14955431
    },
    {
      "product": "SPX + SPXW",
      "putVolume": 2370051,
      "callVolume": 2085680,
      "totalVolume": 4455731,
      "putCallRatio": 1.14,
      "putOpenInterest": 14506077,
      "callOpenInterest": 10475343,
      "totalOpenInterest": 24981420
    }
  ],
  "dataset": "pcr",
  "product": null,
  "provider": "cboe"
}
GET
Settlement/v1/finance:cboe/settlement
2 params

Daily settlement prices for every CBOE futures product, one row per expiry.

Parameters

datestringoptional
Session date, YYYY-MM-DD. Coverage is shallow — around seven months of full days, thinning to a handful of rows a year back and nothing beyond that. Omit for the most recent published session.
productstringoptional
Futures root to keep, e.g. VX (VIX futures), VXM, VA, IBHY, XBTF. Omit for every product.

Request

curl -X GET "https://api.zpi.web.id/v1/finance:cboe/settlement?date=2026-08-19&product=VX" \
  -H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"

Example response

{
  "date": "2026-08-19",
  "count": 55,
  "items": [
    {
      "price": 15.29,
      "symbol": "VX/Q6",
      "product": "VX",
      "expiration": "2026-08-19"
    },
    {
      "price": 17.6066,
      "symbol": "VX34/Q6",
      "product": "VX",
      "expiration": "2026-08-26"
    },
    {
      "price": 17.6066,
      "symbol": "VX35/U6",
      "product": "VX",
      "expiration": "2026-09-02"
    },
    {
      "price": 17.6066,
      "symbol": "VX36/U6",
      "product": "VX",
      "expiration": "2026-09-09"
    },
    {
      "price": 17.6066,
      "symbol": "VX/U6",
      "product": "VX",
      "expiration": "2026-09-16"
    },
    {
      "price": 17.6066,
      "symbol": "VX38/U6",
      "product": "VX",
      "expiration": "2026-09-23"
    }
  ],
  "dataset": "settlement",
  "product": null,
  "products": [
    "FBT",
    "FET",
    "IBHY",
    "IBIG",
    "IEMD",
    "MGTN"
  ],
  "provider": "cboe"
}
GET
Term Structure/v1/finance:cboe/term-structure
0 params

The VIX term structure — implied volatility across five tenors, 1 day to 6 months.

Parameters

This endpoint takes no parameters.

Request

curl -X GET "https://api.zpi.web.id/v1/finance:cboe/term-structure" \
  -H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"

Example response

{
  "asOf": "2026-08-20 15:06:29",
  "count": 5,
  "items": [
    {
      "low": 8.09,
      "high": 8.73,
      "open": 8.67,
      "price": 8.35,
      "change": -1.41,
      "symbol": "VIX1D",
      "tenorDays": 1,
      "changePercent": -14.4467,
      "lastTradeTime": "2026-08-20T10:51:16",
      "previousClose": 9.76
    },
    {
      "low": 13.75,
      "high": 14.4,
      "open": 14.2,
      "price": 13.88,
      "change": 1.22,
      "symbol": "VIX9D",
      "tenorDays": 9,
      "changePercent": 9.6367,
      "lastTradeTime": "2026-08-20T10:51:16",
      "previousClose": 12.66
    },
    {
      "low": 15.49,
      "high": 16.06,
      "open": 15.81,
      "price": 15.74,
      "change": 0.85,
      "symbol": "VIX",
      "tenorDays": 30,
      "changePercent": 5.7085,
      "lastTradeTime": "2026-08-20T10:51:16",
      "previousClose": 14.89
    },
    {
      "low": 18.84,
      "high": 19.14,
      "open": 19.02,
      "price": 18.97,
      "change": 0.4,
      "symbol": "VIX3M",
      "tenorDays": 93,
      "changePercent": 2.154,
      "lastTradeTime": "2026-08-20T10:51:16",
      "previousClose": 18.57
    },
    {
      "low": 21.07,
      "high": 21.3,
      "open": 21.19,
      "price": 21.16,
      "change": 0.26,
      "symbol": "VIX6M",
      "tenorDays": 186,
      "changePercent": 1.244,
      "lastTradeTime": "2026-08-20T10:51:16",
      "previousClose": 20.9
    }
  ],
  "dataset": "term-structure",
  "provider": "cboe"
}

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.6M1.6M 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/.

703.3K703.3K 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.

328.4K328.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.

110.3K110.3K calls so far1dResponses cached for 1d
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

KSEI

financeksei

Kustodian Sentral Efek Indonesia: demografi investor pasar modal, sebaran investor domestik per wilayah, dan kepemilikan efek per instrumen dipecah lokal/asing.

35.2K35.2K calls so far1dResponses cached for 1d
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
SupportStatusReport an issueDiscord
LegalTermsPrivacyCookiesAUPRefunds
© 2026 ZapiPublic web data, one API.
zapi.