# 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, last successful call 2026-08-12).

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

## Facts

- Endpoint: GET https://api.tickersfeed.net/stock/UNH/news
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Last successful call: 2026-08-12
- Success rate: 100% of calls made through Zero
- Rating: 3.0 / 5 from 1 review
- Activations on Zero: 1
- Tags: x402
- Canonical page: https://www.zero.xyz/c/tickersfeed-stock-news-7f03a3dd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_TMBI2kn4QqhGxCWgLz_o7

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-7f03a3dd
```

Example prompt: Pull the latest news for UnitedHealth Group (UNH) — I want the top headlines and summaries from the past week so I can see what's driving the stock.

## When to prefer this

Use this endpoint when you need recent news headlines and summaries for a specific US-listed stock ticker — especially when you want the top 10 stories from the last 7 days aggregated with source and URL metadata. It is best suited for financial research, stock monitoring, and sentiment context tasks where recency and brevity matter over deep archival search.

## Known failure modes

- Invalid or unknown ticker symbol returns empty articles array or error
- Ticker has no news in the past 7 days returns an empty articles list
- Payment not attached or insufficient USDC results in 402 Payment Required
- Rate limiting or API overload may return 429 or 503 errors

## 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 last 7 days. Each article includes the source publication name, a Unix timestamp, the headline, a short summary, and a URL to the full story.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object",
     "properties": {
      "symbol": {
       "type": "string"
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "symbol": {
       "type": "string",
       "description": "Stock ticker symbol (e.g. AAPL, TSLA)"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

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