Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.tradingnews.press/llms.txt

Use this file to discover all available pages before exploring further.

Welcome to TradingNews

TradingNews is a unified trading news API that aggregates breaking financial news from multiple sources into a single, structured stream. Built for individual quant traders and algo developers.

What you get

REST API

Query news by urgency or time range. Simple GET requests with JSON responses.

WebSocket Stream

Real-time firehose delivery. Connect and receive all articles as they arrive (Pro and Max plans).

Priority Scoring

Every article tagged with urgency level — breaking, flash, or regular. Filter for what matters.

Semantic Search & Per-Ticker Sentiment

Max plan adds natural-language search over the article archive (/v1/news/search) and per-ticker sentiment on every response.

Simple Pricing

Rate-limit-based plans: Starter 20/mo,Pro20/mo, Pro 50/mo, Max for power users. 3-day free trial available on Starter and Pro for first-time subscribers.

Data Sources

TradingNews aggregates from multiple curated financial news sources covering US equities, macro events, and global markets. All data is normalized into a consistent format. New sources are added regularly.

Quick Example

curl -H "X-API-Key: YOUR_KEY" \
  "https://api.tradingnews.press/v1/news?limit=5"
{
  "count": 5,
  "articles": [
    {
      "id": "01KNKV33C9DDADR1HRRWGCSA8V",
      "content": "Apple announces record Q2 earnings, beats estimates by 12%",
      "urgency": "breaking",
      "sentiment": null,
      "published_at": "2026-04-07T14:30:00Z",
      "received_at": "2026-04-07T14:30:02Z"
    }
  ]
}