# 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-16).

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

## Facts

- Endpoint: GET https://api.tickersfeed.net/stock/CRCL/news
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/tickersfeed-stock-news-api-5580cc75
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_i50-Gz0Xh9oH24Ei1Llhx

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-5580cc75
```

Example prompt: Pull me the latest news articles for CRCL stock — I want the top headlines and summaries from the past week.

## When to prefer this

Use this endpoint when you need recent news headlines and summaries for a specific US stock ticker, especially in financial research agents, portfolio monitoring workflows, or sentiment analysis pipelines where fresh article data is needed. Prefer this over general web search when you want structured, finance-focused news with reliable metadata like source and timestamp.

## Known failure modes

- Invalid or unrecognized ticker symbol returns empty articles array or error
- Non-US stock symbols may not be supported
- Payment failure (insufficient USDC balance) returns 402 error
- Rate limiting if too many requests in short period
- Stale or no news available if ticker has no coverage in the last 7 days

## 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 ticker symbol and an array of up to 10 news articles, each containing the source name, publication datetime (Unix timestamp), headline, summary, and URL — all from the last 7 days.

## 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-5580cc75/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)
