# claw402 US Stocks Monthly Data

> claw402 US Stocks Monthly Data is a paid API for AI agents from claw402.ai, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-13).

Returns monthly historical price or fundamental data for a US stock symbol via USDC micropayment, no API key required.

## Facts

- Endpoint: GET https://claw402.ai/api/v1/stocks/us/monthly
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/claw402-us-stocks-monthly-data-345161e3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_o2EgDh3RkbDT18-P0TfCg

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-us-stocks-monthly-data-345161e3
```

Example prompt: Can you pull the monthly historical stock data for AAPL from claw402 — it uses USDC micropayments instead of an API key, and I want the full monthly series for US equities.

## When to prefer this

Choose this endpoint when you need monthly historical stock data for US equities without setting up API keys or accounts, and are able to pay $0.002 USDC per call via an x402-compatible wallet. Ideal for AI agents with crypto wallet access that need lightweight, pay-per-use financial data.

## Known failure modes

- Missing or invalid symbol query parameter returns empty data array
- Insufficient USDC balance or failed x402 payment returns 402 Payment Required
- Symbol not found in US stock universe returns empty data array
- Network or upstream vergex.trade outage returns 5xx error

## 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 on success) and a data array containing monthly stock records for the requested US equity symbol.

## 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": {
      "symbol": {
       "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-us-stocks-monthly-data-345161e3/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)
