# TickersFeed Stock News API

> TickersFeed Stock News API 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).

Returns the top 10 latest news articles (last 7 days) for a given US stock ticker, including headline, summary, source, and URL.

## Facts

- Endpoint: GET https://api.tickersfeed.net/stock/MSTR/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-api-1d357ff6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_wknkwQwPj4feFhTt7AqzN

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-api-1d357ff6
```

Example prompt: What are the latest news stories about MicroStrategy (MSTR) from the past week — give me the top headlines, summaries, and links?

## When to prefer this

Use this endpoint when an agent needs recent news context for a specific US-listed stock, particularly for sentiment analysis, briefing generation, or staying current on corporate events. Best when you need structured article metadata (source, datetime, URL) rather than raw web search results. Not suitable for historical news beyond 7 days or for non-US equities.

## Known failure modes

- Invalid or unrecognized ticker symbol returns empty articles array or error
- No news available for obscure or thinly-traded stocks in the 7-day window
- Payment of 0.005 USDC not fulfilled results in 402 Payment Required response
- Rate limiting or network timeout returns 429 or 5xx error

## 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 a JSON object with the stock symbol and an array of up to 10 news articles from the past 7 days, each containing the source name, publication datetime (Unix timestamp), headline, summary, and article URL.

## 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-api-1d357ff6/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)
