# 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 any US stock ticker, including headline, summary, source, and URL.

## Facts

- Endpoint: GET https://api.tickersfeed.net/stock/META/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-0b0c62d9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_z_DONvuBQIn4uv82-Hek2

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-0b0c62d9
```

Example prompt: Pull the latest news headlines for META — I want to see the top recent articles from the past week, including sources and links.

## When to prefer this

Use this endpoint when you need a quick, curated feed of recent news articles for a specific US stock ticker, particularly when you want headline, summary, and source metadata in a single call. Prefer this over web scraping or general search APIs when you specifically want structured financial news data tied to a stock symbol and are comfortable with micropayment-per-call pricing.

## Known failure modes

- Invalid or unrecognized ticker symbol returns empty or error response
- Symbol not listed on US exchanges may return no results
- Payment failure (x402) if USDC balance is insufficient
- Rate limiting if too many calls are made in a short window
- Articles older than 7 days are excluded, so low-coverage tickers may return fewer than 10 results

## 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

A JSON object with the stock symbol and an array of up to 10 articles, each containing the headline, a short summary, the source name, a URL to the full article, and a Unix timestamp for publication date.

## 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-api-0b0c62d9/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)
