Options Snapshot
Free
GET /options/snapshot
Returns the live options surface for BTC, ETH, or HYPE 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. BTC and ETH are accessible on all supported exchanges; HYPE is accessible with exchange=deribit or exchange=derive. Supported exchanges are deribit, binance, bybit, okx, and derive.
Parameters
Query parameters
| Name | Type | Required | Description |
|---|---|---|---|
symbol | string | – | BTC, ETH, or HYPE. HYPE is Deribit/Derive only. 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
}
]
}