N
News Aggregation API
Global news from 50,000+ sources
Aggregate news from 50,000+ sources worldwide. Filter by topic, country, language, and date. No AI costs — pure data.
Scraping & Data IntelligenceLive Dashboard5 endpoints
Endpoints
GET
/searchSearch news articles
GET
/top-headlinesTop headlines by country/category
GET
/sourcesList news sources
GET
/trendingTrending news topics
Use Cases
News apps
Media monitoring
Research tools
Content curation
Trading signals
Quick Start
quickstart.js
const response = await fetch(
"https://news-aggregation-by-helix-api.p.rapidapi.com/search",
{
method: "GET",
headers: {
"X-RapidAPI-Key": "YOUR_API_KEY",
"X-RapidAPI-Host": "news-aggregation-by-helix-api.p.rapidapi.com"
}
}
);
const data = await response.json();
console.log(data);