Options Snapshot
Free
GET /options/snapshot
Returns the live options surface for BTC, ETH, HYPE, SOL, ZEC, XRP, DOGE, or BNB on a supported exchange. Each active instrument is returned in the normalized options shape, including implied volatility, open interest, and Greek fields when the venue provides them. Useful for building an options chain visualization, scanning for unusual IV, or feeding an options analytics workflow.
Authentication
Available on all tiers. Supported pairs: BTC/ETH on Deribit, Binance, Bybit, OKX, and Derive; HYPE on Deribit/Derive; SOL/XRP on Deribit/Binance/Bybit/Derive; DOGE on Binance/Bybit; BNB on Binance; ZEC on Derive.
Parameters
Query parameters
| Name | Type | Required | Description |
|---|---|---|---|
symbol | string | – | BTC, ETH, HYPE, SOL, ZEC, XRP, DOGE, or BNB. Supported venues vary by symbol. Defaults to BTC. |
exchange | string | ✓ | deribit, binance, bybit, okx, or derive. |
Example request
bash
curl -H "X-Api-Key: lk_live_your_key_here" \
"https://api.loris.tools/options/snapshot?symbol=BTC&exchange=deribit"Example response
json
{
"symbol": "BTC",
"exchange": "deribit",
"count": 342,
"instruments": [
{
"instrument_name": "BTC-27JUN26-70000-C",
"expiry": "2026-06-27T08:00:00Z",
"strike": 70000,
"side": "call",
"iv": 0.682,
"delta": 0.541,
"gamma": 0.000012,
"vega": 42.8,
"theta": -18.4,
"open_interest": 1842,
"underlying_price": 71200.00
},
{
"instrument_name": "BTC-27JUN26-70000-P",
"expiry": "2026-06-27T08:00:00Z",
"strike": 70000,
"side": "put",
"iv": 0.701,
"delta": -0.459,
"gamma": 0.000012,
"vega": 42.8,
"theta": -16.2,
"open_interest": 2108,
"underlying_price": 71200.00
}
]
}