# DefiLlama Options Protocol Summary

> DefiLlama Options Protocol Summary 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-15).

Returns volume metrics and historical data for a single DeFi options protocol identified by its DefiLlama slug.

## Facts

- Endpoint: GET https://defillama.use.x402atlas.com/option-summary
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/defillama-options-protocol-summary-f73a702e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_WWg0gmQmooCKfZSDyAoKY

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-protocol-summary-f73a702e
```

Example prompt: Can you pull the DefiLlama options summary for Lyra, including daily premium volume history but excluding the aggregate chart breakdown?

## When to prefer this

Use this endpoint when you need detailed volume and historical data for a specific DeFi options protocol by its DefiLlama slug, as opposed to broad overviews across all protocols. Prefer this over DEX or fees endpoints when the subject is options markets specifically.

## Known failure modes

- Missing required 'protocol' query parameter returns an error
- Invalid or unknown protocol slug returns empty or error response
- Invalid dataType string may return no data or unexpected results
- Network timeout or upstream DefiLlama API unavailability causes failure
- Payment of $0.005 USDC not fulfilled results in 402 response

## How this service works

Options summary by DefiLlama — volume and history for one options protocol by slug.

## Output

Returns volume and historical chart data for the specified options protocol, including metrics like daily premium volume and daily notional volume, with optional filtering to exclude aggregate or per-protocol chart series.

## 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": [
      "protocol"
     ],
     "properties": {
      "dataType": {
       "type": "string",
       "maxLength": 200,
       "description": "Optional data type (e.g. dailyPremiumVolume, dailyNotionalVolume)"
      },
      "protocol": {
       "type": "string",
       "pattern": "^[^/?#]+$",
       "maxLength": 100,
       "minLength": 1,
       "description": "Options protocol slug (e.g. hegic, derive-v1 — see /defillama/options for the live list)"
      },
      "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": {
        "name": {
         "type": "string",
         "description": "Protocol display name"
        },
        "total24h": {
         "type": "number",
         "description": "24h volume in USD, per dataType"
        },
        "totalAllTime": {
         "type": "number",
         "description": "All-time cumulative volume in USD"
        }
       },
       "description": "Raw DefiLlama options summary 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": {
   "name": "Lyra",
   "total24h": 1200000,
   "totalAllTime": 1230000000
  },
  "queried_at": "2026-07-01T12:00:00Z"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/defillama-options-protocol-summary-f73a702e/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)
