Skip to main content
GET
/
options
/
probability
/
density
Risk-neutral PDF/CDF (per expiry)
curl --request GET \
  --url https://api.example.com/options/probability/density \
  --header 'X-API-Key: <api-key>'
{
  "data": {
    "expiries": {},
    "spot_price": 123,
    "filtered_dte_max": 123,
    "confidence_band_requested": 123
  },
  "meta": {
    "version": "<string>",
    "timestamp": "<string>",
    "request_id": "<string>",
    "symbol": "<string>",
    "spot_price": 123,
    "computed_at": "<string>",
    "freshness_seconds": 123,
    "source": [
      "<string>"
    ],
    "exchanges_filtered": [
      "<string>"
    ],
    "rate_limit": {},
    "extra": {}
  },
  "success": true
}

Documentation Index

Fetch the complete documentation index at: https://docs.backquant.com/llms.txt

Use this file to discover all available pages before exploring further.

Risk-neutral PDF/CDF derived from option prices via Breeden-Litzenberger. Optional ?confidence_band=0.68|0.95 returns interpolated price bands per expiry.

See also

Breeden-Litzenberger explained

Authorizations

X-API-Key
string
header
required

Your BackQuant API key (same key as v1)

Headers

X-API-Key
string | null

Query Parameters

symbol
enum<string>
default:BTCUSDT

Trading symbol: BTCUSDT, ETHUSDT, SOLUSDT, or HYPEUSDT.

Available options:
BTCUSDT,
ETHUSDT,
SOLUSDT,
HYPEUSDT
expiry
string | null

Filter to one expiry token (e.g. 28MAR25)

dte_max
integer | null

Drop expiries with DTE greater than this value.

Required range: 0 <= x <= 720
confidence_band
number | null

Confidence level for the implied price band, e.g. 0.68 for ≈1σ or 0.95 for ≈2σ. Adds confidence_band per expiry.

Required range: 0.5 <= x <= 0.999

Response

Successful Response

data
ProbabilityDensityData · object
required
meta
V2Meta · object
required

The meta block returned alongside every v2 response.

Every field after version/timestamp is optional because endpoints attach different combinations — e.g. /v2/status skips symbol, the chain endpoint sets extra.filter_hash, etc. Listing them here means SDKs get a typed accessor for each instead of a generic meta: dict.

success
boolean
default:true