# DefiLlama Options Chain Volume

> DefiLlama Options Chain Volume is a paid API for AI agents from defillama.use.x402atlas.com, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Returns options-protocol trading volume data for a single blockchain network via DefiLlama.

## Facts

- Endpoint: GET https://defillama.use.x402atlas.com/options-chain
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/defillama-options-chain-volume-16f3eef8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_6P3zYBvAIRLo0lrprCxTB

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability defillama-options-chain-volume-16f3eef8
```

Example prompt: Pull the daily options premium volume for Arbitrum from DefiLlama — I want to see the per-protocol breakdown but skip the aggregate chart data.

## When to prefer this

Use this endpoint when you need options-specific volume data scoped to a single blockchain network, especially when you want to see per-protocol breakdowns of premium or notional volume. Prefer this over the general DEX volumes endpoint when the user is asking specifically about options/derivatives protocols rather than spot trading.

## Known failure modes

- Missing required 'chain' query parameter returns a 400 or validation error
- Unrecognized chain slug returns empty data or 404
- Payment not included or insufficient USDC results in 402 Payment Required
- Network timeout or DefiLlama upstream unavailability causes 503
- Invalid dataType string silently returns default data or error

## How this service works

Options volumes for one chain by DefiLlama — options-protocol volume on a single chain.

## Output

Returns options protocol volume statistics for the specified chain, including daily premium volume, daily notional volume, an aggregate time-series chart, and a per-protocol breakdown chart. Optional flags can suppress either chart dataset.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "chain"
     ],
     "properties": {
      "chain": {
       "type": "string",
       "pattern": "^[^/?#]+$",
       "maxLength": 100,
       "minLength": 1,
       "description": "Chain slug (e.g. ethereum, arbitrum)"
      },
      "dataType": {
       "type": "string",
       "maxLength": 200,
       "description": "Optional data type (e.g. dailyPremiumVolume, dailyNotionalVolume)"
      },
      "excludeTotalDataChart": {
       "type": "string",
       "maxLength": 200,
       "description": "Optional true/false to exclude the aggregate data chart"
      },
      "excludeTotalDataChartBreakdown": {
       "type": "string",
       "maxLength": 200,
       "description": "Optional true/false to exclude the per-protocol chart breakdown"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "queried_at",
      "data"
     ],
     "properties": {
      "data": {
       "type": "object",
       "properties": {
        "total24h": {
         "type": "number",
         "description": "Aggregate 24h volume in USD, per dataType"
        },
        "protocols": {
         "type": "array",
         "items": {
          "type": "object",
          "properties": {
           "name": {
            "type": "string"
           },
           "total24h": {
            "type": "number"
           }
          }
         }
        }
       },
       "description": "Raw DefiLlama per-chain options overview payload",
       "additionalProperties": true
      },
      "queried_at": {
       "type": "string",
       "format": "date-time",
       "description": "When this bridge fetched the upstream data"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {
   "total24h": 12300000,
   "protocols": [
    {
     "name": "Lyra",
     "total24h": 1200000
    }
   ]
  },
  "queried_at": "2026-07-01T12:00:00Z"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/defillama-options-chain-volume-16f3eef8/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from defillama.use.x402atlas.com](https://www.zero.xyz/host/defillama.use.x402atlas.com/llms.txt)
