Derivatives

Request futures, options, liquidations, positioning, carry, and derivatives-flow data.

text
GET /api/v1/derivatives/{metric}

Derivatives endpoints require a Pro key with derivatives permission.

#Discover Metrics

curl -H "x-api-key: YOUR_API_KEY" \
  "https://chartinspect.com/api/v1/derivatives/list"

Use the returned IDs or the generated reference. The current family includes funding, open interest, carry versus Treasuries, CVD, taker flow, whale and position ratios, borrow rates, options, liquidations, DVOL, and CFTC positioning.

#Request

curl -H "x-api-key: YOUR_API_KEY" \
  "https://chartinspect.com/api/v1/derivatives/futures_open_interest?days=90&limit=500"

All cataloged metrics advertise days, limit, startDate, and endDate. cftc-positioning additionally supports asset, series, report, and contract:

curl -H "x-api-key: YOUR_API_KEY" \
  "https://chartinspect.com/api/v1/derivatives/cftc-positioning?asset=BTC&series=benchmark&report=futures_only"

Response shapes vary. Exchange comparison series are flat rows, CFTC returns positioning structures, and some options sources return snapshots. Use the endpoint's generated field list and do not assume a universal derivatives row schema.

Was this page helpful?