# TickersFeed Batch Stock News

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

Fetches news articles for 2–50 US stock tickers in a single API call, returning per-symbol headline, summary, source, URL, and timestamp as JSON.

## Facts

- Endpoint: GET https://api.tickersfeed.net/stock/news/batch
- Price: $0.015/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/tickersfeed-batch-stock-news-b939eccb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_8tpIhRL0wOQbdGXd-n6IJ

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-batch-stock-news-b939eccb
```

Example prompt: Can you pull the latest news for all the stocks in my watchlist — AAPL, NVDA, TSLA, MSFT, and AMZN — in one go and show me the headlines with their sources?

## When to prefer this

Choose this endpoint when you need news for 2 or more US stock tickers simultaneously, as it is significantly more cost-efficient than calling single-ticker news endpoints repeatedly. It is ideal for portfolio monitoring, watchlist scanning, and multi-asset sentiment analysis workflows where you need to check news across many symbols in one round trip. Prefer the single-ticker endpoint instead if you only need news for one stock.

## Known failure modes

- Fewer than 2 symbols provided — minimum batch size not met
- More than 50 symbols provided — exceeds maximum batch limit
- Invalid or unrecognized ticker symbol — may return empty article list for that symbol
- Payment failure or insufficient USDC balance — 402 response blocking the call
- Malformed symbols query string — parsing error returned
- No recent news available for a symbol — empty article list returned for that ticker

## How this service works

Bulk stock news for 2–50 US tickers in a single call — the cheapest way to monitor news across a whole portfolio or watchlist. Returns per-symbol article lists (headline, summary, source, URL, timestamp) as JSON. Priced per symbol at $0.005 (e.g. ?symbols=AAPL,NVDA,TSLA). Use for: portfolio news monitoring, watchlist alerts, multi-asset sentiment scans.

## Output

A JSON response containing per-symbol lists of news articles, where each article includes the headline, a brief summary, the source publication name, a URL to the full article, and a publication timestamp. Up to 10 recent articles are returned per ticker symbol.

## 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"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "symbols": {
       "type": "string",
       "description": "Comma-separated tickers, 2–50 (e.g. AAPL,NVDA,TSLA)"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

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