# Financial Data x402 – Stock News Feed

> Financial Data x402 – Stock News Feed is a paid API for AI agents from x402-stock-indicators.vercel.app, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Fetches recent news articles for a given stock ticker, including headlines, summaries, publishers, and publication timestamps.

## Facts

- Endpoint: GET https://x402-stock-indicators.vercel.app/news/%7Bticker%7D
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/financial-data-x402-stock-news-feed-cd898f5e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7TkVSUlyhC6EQTN3bHVgO

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 financial-data-x402-stock-news-feed-cd898f5e
```

Example prompt: Pull the latest news articles for Apple (AAPL) — I want headlines, summaries, and where they were published so I can see what's moving the stock today.

## When to prefer this

Choose this endpoint when you need recent news articles and headlines for a specific publicly traded stock ticker without setting up API keys or subscriptions. It is ideal for agents that need pay-as-you-go access to equity news at $0.005 per call via USDC on Base or Solana. Prefer it over traditional financial data APIs when you want frictionless micropayment-based access without account registration.

## Known failure modes

- Invalid or unknown ticker returns empty articles array or error
- Payment failure (402) if USDC wallet lacks sufficient funds or x402 handshake fails
- Rate limiting or upstream Yahoo Finance unavailability causes 503 or empty response
- Malformed ticker path parameter causes 400 or unexpected response
- News may be delayed or missing for thinly traded or OTC securities

## How this service works

Pay-per-call stock, macro, on-chain, and crypto data over the x402 protocol. USDC on Base or Solana, no API keys, no subscriptions.

## Output

A JSON object containing the ticker symbol, an as-of date, an article count, and an array of news articles — each with a URL, title, plain-English summary, publisher name, and UTC publication timestamp.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "required": {
   "type": "string"
  },
  "properties": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "as_of": "2026-07-26",
  "count": 2,
  "ticker": "AAPL",
  "articles": [
   {
    "url": "https://finance.yahoo.com/video/big-tech-earnings-meet-ipo-220000114.html",
    "title": "Big Tech earnings meet IPO buzz: What to watch Thursday",
    "summary": "Asking for a Trend Host Josh Lipton previews the biggest market catalysts for Thursday, including highly anticipated earnings from Apple (AAPL) and Amazon (AMZN).",
    "publisher": "Yahoo Finance Video",
    "published_at": "2026-07-29T22:00:00Z"
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/financial-data-x402-stock-news-feed-cd898f5e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-stock-indicators.vercel.app](https://www.zero.xyz/host/x402-stock-indicators.vercel.app/llms.txt)
