# claw402 US Stock Search API

> claw402 US Stock Search 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-16).

Search US stocks by keyword to retrieve matching equity listings via a pay-per-call USDC gateway

## Facts

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

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-search-api-741baa7a
```

Example prompt: Search US stocks for 'Apple' and show me the matching equity listings — I want to find the ticker and any related results for that company.

## When to prefer this

Use this endpoint when you need to search for US-listed stocks by company name or keyword and want to pay per call with USDC without API key registration. Prefer this over traditional finance APIs when operating in a crypto-native, wallet-based payment context.

## Known failure modes

- Empty data array returned when no stocks match the keyword
- Payment failure if USDC wallet balance is insufficient or x402 payment not processed
- Invalid or missing keywords parameter may return empty results or error
- Network timeout or service unavailability from vergex.trade backend

## 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 code field (0 on success) and a data array containing matching US stock listings based on the keyword search.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "keywords": "technology"
  }
 }
}
```

## 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": {
      "keywords": {
       "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-search-api-741baa7a/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)
