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
/search

Search news articles

GET
/top-headlines

Top headlines by country/category

GET
/sources

List news sources

GET
/trending

Trending 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);

Related APIs