# claw402 Polygon Grouped Daily Aggregates

> claw402 Polygon Grouped Daily Aggregates 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).

Returns grouped daily OHLCV bar data for all Polygon.io tickers for a given date, accessible via USDC micropayment with no API key required.

## Facts

- Endpoint: GET https://claw402.ai/api/v1/polygon/aggs/grouped
- 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-grouped-daily-aggregates-e18cb87c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_yj8ttzWlEH6oW54Tmtq5t

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-grouped-daily-aggregates-e18cb87c
```

Example prompt: Can you pull the grouped daily bar data for all tickers from Polygon for 2024-01-15, with adjusted prices and OTC included, and pay for it with my USDC wallet?

## When to prefer this

Use this endpoint when you need market-wide daily OHLCV bar data for all tickers on a specific date and want to avoid API key registration by paying per-call with USDC. Prefer this over direct Polygon.io access when operating in a wallet-native, keyless agent environment.

## Known failure modes

- Payment not received or insufficient USDC — HTTP 402 returned, no data
- Invalid or missing date parameter — empty data array or error code returned
- Date falls on a non-trading day (weekend/holiday) — empty data array returned
- Malformed query parameters — API returns error response
- Network timeout or upstream Polygon.io 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 with a status code and an array of daily OHLCV aggregate bars for all tickers on the requested date, including open, high, low, close, volume, and related fields as returned by Polygon.io's grouped daily endpoint.

## 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"
      },
      "adjusted": {
       "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-grouped-daily-aggregates-e18cb87c/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)
