# Stock News Headlines by Ticker

> Stock News Headlines by Ticker is a paid API for AI agents from www.x402financialdata.com, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Fetches the latest news headlines, summaries, publish dates, publishers, and URLs for a given stock ticker from Yahoo Finance data.

## Facts

- Endpoint: GET https://www.x402financialdata.com/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-by-ticker-b715b0a7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_zDadosrezDJqhcdaX13Jb

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-by-ticker-b715b0a7
```

Example prompt: Pull the latest 10 Yahoo Finance news headlines and summaries for TSLA so I can quickly check what's driving the stock today.

## When to prefer this

Choose this endpoint when you need structured, per-article news metadata (title, summary, date, publisher, URL) for a specific US equity ticker, especially for sentiment monitoring, catalyst detection, or news briefing workflows. Prefer this over general web search when you want curated financial news sourced specifically from Yahoo Finance and tied cleanly to a stock symbol.

## Known failure modes

- Invalid or unrecognized ticker symbol returns an empty result or error
- Limit parameter exceeding 50 is capped or returns a validation error
- Ticker with no recent news coverage returns an empty articles array
- Service temporarily unavailable from Yahoo Finance data feed causes a 5xx error
- Malformed ticker input (special characters, spaces) may return an error

## 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.005/call.

## Output

A list of up to 50 news articles for the requested ticker, each containing the article title, a short summary, the publish date, the publisher name, and a URL to the full article — sourced from Yahoo Finance in near-real-time.

## 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-by-ticker-b715b0a7/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from www.x402financialdata.com](https://www.zero.xyz/host/www.x402financialdata.com/llms.txt)
