# claw402 Alpaca News via x402

> claw402 Alpaca News via x402 is a paid API for AI agents from claw402.ai, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-14).

Fetches financial news articles from Alpaca Markets, payable per-call with USDC via x402 protocol — no API key required.

## Facts

- Endpoint: GET https://claw402.ai/api/v1/alpaca/news
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Success rate: 0% of calls made through Zero
- Activations on Zero: 2
- Tags: x402
- Canonical page: https://www.zero.xyz/c/claw402-alpaca-news-via-x402-77af9224
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_vsjheiebLNyZijfdqQ2Ea

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-alpaca-news-via-x402-77af9224
```

Example prompt: Can you pull the latest 10 news articles for AAPL and TSLA from Alpaca, sorted by newest first, including the full article content?

## When to prefer this

Choose this endpoint when you need Alpaca Markets news data without registering for an Alpaca API key, especially in agentic or automated workflows that use USDC micropayments (x402 protocol). Ideal for lightweight, pay-as-you-go financial news lookups for specific stock symbols without account management overhead.

## Known failure modes

- Payment not received or insufficient USDC — request blocked with 402 response
- Invalid symbol format — returns empty data array
- Date range too broad or malformed start/end parameters — returns error or empty results
- Network timeout from upstream Alpaca API — returns error response
- Invalid sort or limit parameters — may return default results or error

## 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 for success) and a data array containing news article objects from Alpaca Markets — typically including headline, summary, publication time, and related symbols.

## 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": {
      "end": {
       "type": "string"
      },
      "sort": {
       "type": "string"
      },
      "limit": {
       "type": "string"
      },
      "start": {
       "type": "string"
      },
      "symbols": {
       "type": "string"
      },
      "include_content": {
       "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-alpaca-news-via-x402-77af9224/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)
