# claw402 US Stock Overview

> claw402 US Stock Overview 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 an overview of a US stock by ticker symbol, paid per-call with USDC via x402 protocol

## Facts

- Endpoint: GET https://claw402.ai/api/v1/stocks/us/overview
- 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-us-stock-overview-7a512beb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_5XApoSn36qrf0SNh_zHkJ

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-stock-overview-7a512beb
```

Example prompt: Can you get me a stock overview for Apple (AAPL) from the US market?

## When to prefer this

Use this endpoint when you need a quick, no-registration US stock overview and are willing to pay micro-amounts of USDC per call via the x402 protocol. Ideal for agents that don't want to manage API keys and prefer pay-per-use crypto micropayments.

## Known failure modes

- Invalid or unrecognized ticker symbol returns empty data array
- Missing symbol query parameter may result in empty or error response
- Network or payment failure prevents data retrieval
- Payment in USDC fails or wallet has insufficient funds
- Non-US stock symbols may return no data

## 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 overview information for the requested US stock ticker 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-stock-overview-7a512beb/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)
