Catalog/defi-options-volume

DeFi

Options volume market overview API

Market-wide on-chain options notional volume totals (24h/7d/30d/all-time) plus a ranked leaderboard of the top options protocols. Sourced from DefiLlama /overview/options. Answers 'total on-chain options volume','which options protocol leads by volume'.

Price$0.03per request
MethodPOST
Route/v1/defi/options-volume
StatusLive
MIME typeapplication/json
Rate limit60/minute
Cache3600s public
defioptionsvolumederivativesoverviewleaderboarddefillamamarket
API URLhttps://x402.hexl.dev/v1/defi/options-volume
Integration docs
Example request
{
  "limit": 2
}
Example response
{
  "metric": "volume",
  "total24hUsd": 2211239,
  "total7dUsd": 12203731,
  "total30dUsd": 44884120,
  "totalAllTimeUsd": 709013485,
  "change1dPct": -34.19,
  "change7dPct": null,
  "change30dPct": null,
  "protocolCount": 40,
  "topProtocols": [
    {
      "name": "Hegic",
      "category": "Options",
      "volume24hUsd": 337,
      "volume30dUsd": 48615
    }
  ]
}
Input schema
{
  "type": "object",
  "properties": {
    "limit": {
      "type": "number",
      "minimum": 1,
      "maximum": 100,
      "default": 20
    }
  }
}
Output schema
{
  "type": "object",
  "additionalProperties": true
}