# claw402 Polygon Ticker News API

> claw402 Polygon Ticker News API 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 news articles for a given stock or crypto ticker on Polygon, filterable by date and sortable, paid per-call with USDC via x402

## Facts

- Endpoint: GET https://claw402.ai/api/v1/polygon/ticker-news
- 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-ticker-news-api-449319a7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_tuMWvOYpDbt3t-ov6Bbh2

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-news-api-449319a7
```

Example prompt: Can you pull the 10 most recent news articles for TSLA published after 2024-01-01, sorted by newest first?

## When to prefer this

Use this endpoint when you need financial or crypto news articles for a specific ticker symbol without requiring API key registration, paying only per call in USDC via x402 on Polygon network. Prefer over traditional data providers when operating in a wallet-native, keyless environment.

## Known failure modes

- Missing required ticker parameter returns empty data array
- Invalid date format for published_utc causes no results
- Limit or sort parameters with unexpected values may be ignored or cause errors
- Payment failure via x402 returns HTTP 402 before any data is returned
- Empty data array returned if no news exists for the given ticker and date range

## 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 response with a code field (0 for success) and a data array containing news articles associated with the queried ticker, potentially including headlines, sources, and publication timestamps.

## 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": {
      "sort": {
       "type": "string"
      },
      "limit": {
       "type": "string"
      },
      "order": {
       "type": "string"
      },
      "ticker": {
       "type": "string"
      },
      "published_utc": {
       "type": "string"
      },
      "published_utc.gte": {
       "type": "string"
      },
      "published_utc.lte": {
       "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-news-api-449319a7/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)
