# claw402 Polygon Snapshot All — x402 Payment Gateway

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

Retrieves a full snapshot of all Polygon market tickers/instruments via x402 USDC micropayment, backed by vergex.trade

## Facts

- Endpoint: GET https://claw402.ai/api/v1/polygon/snapshot/all
- 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/claw402-polygon-snapshot-all-x402-payment-gateway-f5cab483
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_DzODmnKQbzWVjNWpcCrpN

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-snapshot-all-x402-payment-gateway-f5cab483
```

Example prompt: Can you pull a full snapshot of all available Polygon market tickers from vergex.trade, including OTC instruments?

## When to prefer this

Use this endpoint when you need a comprehensive, no-registration market snapshot of all Polygon instruments at once and are willing to pay $0.005 USDC per call via x402 micropayment. Prefer it over API-key-based market data providers when your agent workflow favors wallet-based pay-per-call access without subscription overhead.

## Known failure modes

- Payment not received or invalid x402 USDC payment header — returns 402 Payment Required
- Malformed query parameters (e.g. invalid tickers string) — returns error code in response body
- No data available for requested tickers — returns empty data array with code 0
- Service unavailable from vergex.trade backend — returns 5xx or gateway error
- Rate limit or payment replay detected — payment rejected

## How this service works

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

## Output

Returns a JSON object with a status code (0 for success) and a data array containing all available Polygon market snapshot entries, which may include ticker symbols, instrument details, and pricing data.

## 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": {
      "tickers": {
       "type": "string"
      },
      "include_otc": {
       "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-snapshot-all-x402-payment-gateway-f5cab483/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)
