# Cboe — Zapi reference > Kutipan tertunda Cboe untuk saham dan indeks, termasuk implied volatility 30 hari yang tidak ada di feed kutipan lain. **Base URL:** `https://api.zpi.web.id` **Auth:** Send `x-api-key: YOUR_KEY` header on every request. Get a free key at https://zpi.web.id/dashboard/keys. **Response envelope:** `{ status, message, content }` **Rate limit:** 60 req/min on free tier. **Related:** - Detail page: https://zpi.web.id/api/finance/cboe - Endpoint catalog: https://zpi.web.id/category/finance - Concise index: https://zpi.web.id/llms.txt - Full reference: https://zpi.web.id/llms-full.txt --- ## Cboe **Category:** finance · **Slug:** `cboe` **Detail page:** https://zpi.web.id/api/finance/cboe Kutipan tertunda Cboe untuk saham dan indeks, termasuk implied volatility 30 hari yang tidak ada di feed kutipan lain. **Tags:** cboe, options, volatility, vix, finance ### Quote Kutipan satu simbol. Indeks bisa ditulis `^VIX`, `VIX`, atau `_VIX`. - **Method:** `GET` - **Endpoint:** `https://api.zpi.web.id/v1/finance:cboe/quote` - **Cache TTL:** 60s **Parameters:** | Name | Type | Location | Required | Description | |------|------|----------|----------|-------------| | `symbol` | string | query | yes | Ticker symbol. Indices accept `^VIX`, `VIX` or `_VIX`. Required. | **cURL:** ```bash curl "https://api.zpi.web.id/v1/finance:cboe/quote?symbol=AAPL" \ -H "x-api-key: YOUR_API_KEY" ``` **JavaScript / TypeScript:** ```javascript const res = await fetch("https://api.zpi.web.id/v1/finance:cboe/quote?symbol=AAPL", { headers: { "x-api-key": process.env.ZAPI_KEY } }); const data = await res.json(); ``` **Python:** ```python import requests r = requests.get("https://api.zpi.web.id/v1/finance:cboe/quote?symbol=AAPL", headers={"x-api-key": "YOUR_API_KEY"}) data = r.json() ``` **Example response:** ```json { "ask": 0, "bid": 0, "low": 14.77, "asOf": "2026-08-08 10:08:34", "high": 15.28, "iv30": 68.467, "open": 15.26, "tick": "down", "close": 14.9, "price": 14.9, "change": -0.25, "source": "cboe", "symbol": "^VIX", "volume": 0, "askSize": 0, "bidSize": 0, "iv30Change": 0, "securityType": "index", "changePercent": -1.6779, "lastTradeTime": "2026-08-07T16:15:01", "previousClose": 14.9 } ``` --- _Generated: 2026-08-08T12:06:42.058Z_