# TickersFeed Stock News

> TickersFeed Stock News is a paid API for AI agents from api.tickersfeed.net, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Fetches the top 10 latest news articles for any US stock ticker from the past 7 days, including headline, summary, source, and URL.

## Facts

- Endpoint: GET https://api.tickersfeed.net/stock/MU/news
- 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/tickersfeed-stock-news-b739ca0e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_vRG0vyU6FkxZDOM0R5eGC

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 tickersfeed-stock-news-b739ca0e
```

Example prompt: Pull up the latest news articles for Micron Technology (MU) — I want to see the top headlines, summaries, and sources from the past week.

## When to prefer this

Use this endpoint when you need recent news coverage (last 7 days) for a specific US stock ticker and want structured article metadata (headline, summary, source, URL) without needing AI-synthesized analysis. Prefer this over an AI analysis endpoint when you want raw, verifiable source articles rather than generated commentary.

## Known failure modes

- Invalid or unrecognized ticker symbol returns empty results or error
- Ticker with no recent news in the 7-day window returns fewer than 10 articles or empty list
- Non-US stock symbols may not be supported
- Payment failure or insufficient USDC balance blocks the request

## How this service works

Latest news for any US stock — top 10 articles from the last 7 days, with headline, summary, source, and URL. $0.005 USDC per call.

## Output

Returns up to 10 news articles for the requested US stock ticker, each containing the news source name, publication timestamp, headline, article summary, and a URL to the full article, all sourced from within the last 7 days.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "symbol": {
   "type": "string",
   "description": "Stock ticker symbol (e.g. AAPL, TSLA)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "symbol": "AAPL",
 "articles": [
  {
   "source": "Reuters",
   "datetime": 1700000000,
   "headline": "Apple reports record earnings"
  }
 ]
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/tickersfeed-stock-news-b739ca0e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.tickersfeed.net](https://www.zero.xyz/host/api.tickersfeed.net/llms.txt)
