# claw402 Polygon Tickers Lookup

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

Returns ticker/symbol data for assets on the Polygon network, with filtering by market, exchange, search query, and other parameters.

## Facts

- Endpoint: GET https://claw402.ai/api/v1/polygon/tickers
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/claw402-polygon-tickers-lookup-c2e92cda
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_TBVx8-D4K2JaReBcPO16t

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-tickers-lookup-c2e92cda
```

Example prompt: Can you look up ticker information for AAPL on the Polygon tickers endpoint — show me active listings on the NASDAQ exchange and limit the results to 10?

## When to prefer this

Use this endpoint when you need to look up, search, or filter ticker/symbol data on the Polygon network and want to pay per-call with USDC via x402 without API key registration. Prefer this over traditional market data APIs when operating in a crypto-native, wallet-based payment workflow.

## Known failure modes

- Empty data array returned when no tickers match the filter criteria
- Invalid query parameter values may return error code or empty results
- Payment failure via x402/USDC results in 402 response and no data
- Rate limiting or wallet balance issues blocking the request

## 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 code field (0 for success) and a data array containing ticker records matching the query filters, such as symbol details, exchange info, and market classification.

## 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": {
      "cik": {
       "type": "string"
      },
      "date": {
       "type": "string"
      },
      "sort": {
       "type": "string"
      },
      "type": {
       "type": "string"
      },
      "cusip": {
       "type": "string"
      },
      "limit": {
       "type": "string"
      },
      "order": {
       "type": "string"
      },
      "active": {
       "type": "string"
      },
      "market": {
       "type": "string"
      },
      "search": {
       "type": "string"
      },
      "ticker": {
       "type": "string"
      },
      "exchange": {
       "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-tickers-lookup-c2e92cda/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)
