Skip to main content
GET
/
options
/
greeks
/
{greek}
Greek exposure profile by strike
curl --request GET \
  --url https://api.example.com/options/greeks/{greek} \
  --header 'X-API-Key: <api-key>'
{
  "success": false,
  "error": {
    "code": "UNAUTHORIZED",
    "message": "Invalid API key"
  },
  "meta": {
    "version": "2.0",
    "timestamp": "2026-04-29T12:00:00Z"
  }
}

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.

Net greek exposure per strike. greek is one of delta (DEX), theta, vanna, charm, vega. Optional ?dte_max recomputes from the raw chain limited to short-DTE contracts.

See also

Greeks beyond delta

What is GEX?

Authorizations

X-API-Key
string
header
required

Your BackQuant API key (same key as v1)

Headers

X-API-Key
string | null

Path Parameters

greek
enum<string>
required

Which greek profile to return

Available options:
delta,
theta,
vanna,
charm,
vega

Query Parameters

symbol
enum<string>
default:BTCUSDT

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

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

Comma-separated venue filter

moneyness_min
number | null

Strike/spot lower bound

Required range: 0 <= x <= 10
moneyness_max
number | null

Strike/spot upper bound

Required range: 0 <= x <= 10
dte_max
integer | null

Limit aggregation to contracts with DTE ≤ dte_max. Triggers a recomputation from the raw chain.

Required range: 0 <= x <= 720

Response

Successful Response