# Stock News Headlines

> Stock News Headlines 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 the latest news headlines and summaries for a given stock ticker symbol from Yahoo Finance, including title, summary, publish date, publisher, and article URL.

## Facts

- Endpoint: GET https://x402-stock-indicators.vercel.app/news/:ticker
- 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/stock-news-headlines-fdc1c58b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_jVPh5tqsCSh21C13zW4jf

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 stock-news-headlines-fdc1c58b
```

Example prompt: Can you pull the latest 20 news headlines and summaries for NVDA from Yahoo Finance so I can see what's driving the stock today?

## When to prefer this

Choose this endpoint when you need fast, structured news headlines and summaries for a specific US stock ticker sourced from Yahoo Finance, especially for sentiment analysis, catalyst monitoring, or pre-trade research. It is ideal when you need article metadata (title, publisher, date, URL) alongside summaries rather than raw web scraping. Prefer this over general web search when you want finance-specific news scoped to a single ticker symbol.

## Known failure modes

- Invalid or unknown ticker symbol returns empty results or an error
- Limit parameter exceeding 50 is rejected or clamped
- Yahoo Finance data unavailability may result in stale or missing articles
- Network timeout if upstream Yahoo Finance is slow
- Non-US or obscure tickers may have limited or no coverage

## How this service works

Latest news headlines and summaries for a stock ticker from real Yahoo Finance data. Includes article title, summary, publish date, publisher name, and URL — everything needed to monitor sentiment and catalysts. Supports optional limit parameter (default 10, max 50). $0.0025/call.

## Output

Returns a list of up to 50 news articles for the requested ticker, each containing the article title, a short summary, publish date, publisher name, and a URL to the full article. Default response includes 10 articles.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "ticker"
     ],
     "properties": {
      "ticker": {
       "type": "string",
       "description": "Stock ticker symbol, e.g. AAPL, TSLA, MSFT"
      }
     }
    },
    "queryParams": {
     "type": "object",
     "required": [],
     "properties": {
      "limit": {
       "type": "integer",
       "description": "Max articles to return, default 10, max 50."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stock-news-headlines-fdc1c58b/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)
