# claw402 Polygon Options Contract Details

> claw402 Polygon Options Contract Details 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).

Retrieves detailed contract specifications for a Polygon-listed options instrument by ticker, optionally as of a specific date.

## Facts

- Endpoint: GET https://claw402.ai/api/v1/polygon/options/contract-details
- 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-contract-details-bd1a785c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_F_zBku77Kqmn4rAU9ivkc

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-contract-details-bd1a785c
```

Example prompt: What are the full contract details for the options ticker O:AAPL240119C00150000 on Polygon as of January 15, 2024?

## When to prefer this

Use this endpoint when you need structured contract-level metadata for a specific Polygon options instrument by ticker, especially when no API key or registration is available and you prefer micropayment-based access via USDC on x402.

## Known failure modes

- Invalid or unrecognized options_ticker returns empty data array
- as_of date in wrong format returns error or no results
- Payment not included or insufficient USDC results in 402 response
- Ticker not listed on Polygon returns empty data
- Network timeout or upstream data provider unavailability

## 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 code 0 and a data array containing the contract details for the requested options ticker, including specifications such as strike price, expiration date, underlying asset, and contract type.

## 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": {
      "as_of": {
       "type": "string"
      },
      "options_ticker": {
       "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-contract-details-bd1a785c/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)
