# claw402 Polygon Ticker Details

> claw402 Polygon Ticker 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-16).

Retrieves ticker details for a given stock or asset ticker symbol on a specified date via the Polygon data provider, paid per-call with USDC via x402.

## Facts

- Endpoint: GET https://claw402.ai/api/v1/polygon/ticker-details
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/claw402-polygon-ticker-details-017eb21f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_UvnUw-3AzDHOBiuEPnnS7

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-ticker-details-017eb21f
```

Example prompt: Can you get me the ticker details for AAPL on 2024-06-15 using the Polygon data feed — paying per call with USDC, no API key needed?

## When to prefer this

Choose this endpoint when you need per-call, pay-as-you-go access to Polygon ticker details without signing up for an API key or subscription — ideal for agents that need occasional or low-volume financial data lookups and can pay micro-amounts in USDC via x402.

## Known failure modes

- Missing or invalid ticker symbol returns empty data array
- Invalid date format causes query failure
- Insufficient USDC balance results in 402 payment required error
- Unknown ticker returns code 0 with empty data array
- Network or provider outage returns error code
- Malformed query parameters cause request rejection

## 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 and a data array containing ticker details for the requested symbol and date, e.g. {"code":0,"data":[...]}. The data field contains relevant market or asset metadata for the queried ticker.

## 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": {
      "date": {
       "type": "string"
      },
      "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-ticker-details-017eb21f/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)
