Aggregated & tagged news
56 live-verified RSS sources, deduplicated and tagged by ticker, topic, and sentiment.
Every desk below is a real, shipped part of the API — not a roadmap slide.
56 live-verified RSS sources, deduplicated and tagged by ticker, topic, and sentiment.
A Server-Sent Events feed pushes the moment a new, relevant article is ingested.
Live prices for every major USDT pair, candles and 11 indicators — RSI, MACD, Ichimoku, and more — for 29 major pairs.
A "whale" is a wallet moving a fortune in a single transaction. We watch Bitcoin, Ethereum, and Solana in real time and flag every transfer over $500k the moment it happens.
One LLM-written prose summary of the day's top-clustered events, daily at 19:00 UTC.
Cross-source stories clustered into events; every ticker gets a daily −1 to +1 score.
Every route below is live and documented in the interactive reference.
That's a real, live connection to this page — not a screenshot. Full product is a real WebSocket too, not polling: auth happens over the first message, never in the URL, so your key never lands in a proxy access log. Subscribe to any of ~700+ USDT pairs, not just the majors.
const ws = new WebSocket("wss://free-api.news/v1/stream/prices");
ws.onopen = () => ws.send(JSON.stringify({ type: "auth", apiKey: "YOUR_API_KEY" }));
ws.onmessage = (event) => {
const msg = JSON.parse(event.data);
if (msg.type === "connected") {
ws.send(JSON.stringify({ type: "subscribe", symbols: ["BTC"] }));
}
if (msg.type === "tick") {
console.log(msg.symbol, msg.price); // "BTC" "64401.12000000"
}
};
Every plan starts with instant free-tier signup — self-serve paid checkout is landing soon, email us in the meantime to upgrade.
Need every vertical? The All Access bundle covers Crypto, Stocks, Forex, Fundamentals, and Political for $69.99/mo instead of $149.95 buying each Premium tier separately — save $79.96/mo (53%). Get All Access →
Backtesting or building a research pipeline? Every plan's /v1/news endpoint supports format=csv for bulk export — no separate export tier or extra charge. Need deeper history? Enterprise removes the 90-day lookback limit and adds a dedicated /v1/news/export endpoint for up to 5,000 rows per call.
Get an API key and make your first call in under two minutes.