# claw402 Polygon Options Snapshot

> claw402 Polygon Options Snapshot is a paid API for AI agents from claw402.ai, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-15).

Returns a snapshot of options contracts on Polygon, filterable by underlying asset, strike price, contract type, and expiration date.

## Facts

- Endpoint: GET https://claw402.ai/api/v1/polygon/options/snapshot
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/claw402-polygon-options-snapshot-93f6d98c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_4aKvrsDGi-MEzo1nVxbNC

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 claw402-polygon-options-snapshot-93f6d98c
```

Example prompt: Can you pull me a snapshot of call options on ETH from the Polygon options market expiring after 2025-06-01 with a strike price above $2000, limit to 20 results ordered by expiration date?

## When to prefer this

Use this endpoint when you need a filtered snapshot of Polygon options contracts without requiring API key registration — ideal for agents using x402 USDC micropayment flows. Best when filtering by underlying asset, strike price range, or expiration date is needed in a single low-cost call.

## Known failure modes

- Empty data array returned when no options match the given filters
- Invalid query parameter values (e.g. non-numeric strike price) may return an error or empty result
- Payment failure via x402/USDC wallet results in 402 Payment Required response
- Unsupported underlying asset ticker returns empty or error response
- Rate limiting or backend unavailability from vergex.trade returns a non-zero error code

## How this service works

Backed by vergex.trade. Pay for any API with USDC. No API keys. No registration. Just a wallet.

## Output

A JSON object with a status code and a data array containing matching options contracts, each with details like underlying asset, strike price, contract type, and expiration date. Returns an empty data array if no contracts match the filters.

## 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",
     "properties": {
      "limit": {
       "type": "string"
      },
      "order": {
       "type": "string"
      },
      "strike_price": {
       "type": "string"
      },
      "contract_type": {
       "type": "string"
      },
      "expiration_date": {
       "type": "string"
      },
      "strike_price.gt": {
       "type": "string"
      },
      "strike_price.lt": {
       "type": "string"
      },
      "underlyingAsset": {
       "type": "string"
      },
      "strike_price.gte": {
       "type": "string"
      },
      "strike_price.lte": {
       "type": "string"
      },
      "expiration_date.gt": {
       "type": "string"
      },
      "expiration_date.lt": {
       "type": "string"
      },
      "expiration_date.gte": {
       "type": "string"
      },
      "expiration_date.lte": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "code": 0,
  "data": []
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/claw402-polygon-options-snapshot-93f6d98c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from claw402.ai](https://www.zero.xyz/host/claw402.ai/llms.txt)
