Options Snapshot
FreeGET /options/snapshot
Returns the live Deribit options surface for BTC or ETH — every active instrument with implied volatility, delta, gamma, vega, theta, and open interest. Useful for building an options chain visualization, scanning for unusual IV, or feeding an options analytics workflow.
Authentication
Available on all tiers. Both BTC and ETH are accessible. The symbol parameter is an enum restricted to these two underlyings.
Parameters
Query parameters
| Name | Type | Required | Description |
|---|---|---|---|
symbol | string | – | BTC or ETH. Defaults to BTC. |
Example request
bash
curl -H "X-Api-Key: lk_live_your_key_here" \
"https://api.loris.tools/options/snapshot?symbol=BTC"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
}
]
}