# claw402 Alpaca Options Quotes Latest

> claw402 Alpaca Options Quotes Latest is a paid API for AI agents from claw402.ai, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-14).

Fetches the latest options quotes for specified symbols via Alpaca Markets data, paid per-call with USDC using the x402 payment protocol

## Facts

- Endpoint: GET https://claw402.ai/api/v1/alpaca/options/quotes/latest
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/claw402-alpaca-options-quotes-latest-fc7b2a85
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_VudDAktppsSzuCYOg7e_g

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-alpaca-options-quotes-latest-fc7b2a85
```

Example prompt: Can you get me the latest options quotes for AAPL and SPY from Alpaca — I'll pay per call with my crypto wallet, no API key needed.

## When to prefer this

Choose this endpoint when you need real-time or latest Alpaca options quotes without API key registration, prefer paying micro-amounts in USDC per call via x402 protocol, or are building an autonomous agent that handles its own payment flow for market data access.

## Known failure modes

- Payment not received or insufficient USDC — returns 402 Payment Required
- Invalid or unsupported symbol — returns empty data array
- Missing required query parameters — malformed request error
- Feed parameter not recognized — may return empty or error response
- Network or upstream Alpaca API outage — service unavailable

## 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 containing the latest options quote data for the requested symbols, including pricing fields such as bid, ask, and other quote attributes, returned from Alpaca's options data feed.

## 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": {
      "feed": {
       "type": "string"
      },
      "symbols": {
       "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-alpaca-options-quotes-latest-fc7b2a85/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)
