What NewsNow does and who it is for

NewsNow is a REST-based news aggregation API that sits in front of two major news discovery engines — Google News and DuckDuckGo News — and exposes their content through a unified interface. Rather than licensing article content directly from publishers, it surfaces headlines, metadata, and links from these aggregators, giving developers a single integration point for broad global coverage.

The API is a practical fit for teams building news feeds, media monitoring dashboards, content curation tools, research scrapers, or any application that needs to surface current headlines without negotiating direct publisher agreements. Its pricing positions it squarely as an affordable option for side projects and startups, though the higher-tier plans also cover production workloads with meaningful monthly quotas.

Dual-source architecture: Google News vs. DuckDuckGo News

NewsNow exposes two parallel sets of endpoints — one backed by Google News and one backed by DuckDuckGo News. This dual-source design matters in practice because the two engines have different regional strengths, editorial weighting, and coverage patterns. If your application targets a specific geography or requires a fallback, having both sources accessible under one API key is useful.

The Google-powered endpoints support geo-targeting using country codes (over 60 countries are supported, from the US and UK to Japan, Brazil, and Nigeria). The DuckDuckGo-powered endpoints use a region-locale pairing format (for example, us-en for English-language United States results, fr-fr for France, or wt-wt for no regional preference), covering a similarly large set of territories.

Endpoint walkthrough

NewsNow exposes eight endpoints in total:

  • POST /newsv2 — The core Google-powered search endpoint. Accepts keyword queries with optional category filtering, date-bounded searches (using from/to dates in dd/mm/yyyy format), and language/region parameters. Set time_bounded to true for a specific date range or false for the latest results only.
  • POST /newsv2_top_news — Returns overall top news from Google News without requiring a query.
  • POST /newsv2_top_news_cat — Fetches top headlines filtered by one of eight predefined categories: WORLD, NATION, BUSINESS, TECHNOLOGY, ENTERTAINMENT, SPORTS, SCIENCE, or HEALTH.
  • POST /newsv2_top_news_location — Retrieves top news filtered by a specific country code, useful for localized news feeds.
  • POST /newsv2_top_news_site — Returns top stories from a specific news publisher. Setting more_information: true requests richer metadata including top images.
  • POST / (News via DuckDuckGo) — The DuckDuckGo-backed query endpoint for real-time article search using region-locale targeting.
  • POST / (Top News via DuckDuckGo) — Returns trending top news via DuckDuckGo.
  • GET / (Ping) — A lightweight health-check endpoint to verify the service is reachable.

The category-based and location-based endpoints are particularly useful for applications that want structured news browsing rather than open-ended keyword search. The site-specific endpoint is handy for competitive monitoring or tracking a fixed list of publishers.

Language and region support

NewsNow supports 40 languages, including major European languages (English, German, French, Spanish, Italian, Portuguese, Russian), Asian languages (Japanese, Korean, Chinese Simplified and Traditional, Hindi, Bengali, Tamil, Thai), and several others including Arabic, Hebrew, and Vietnamese. This makes it a viable choice for non-English-language applications without needing a separate localization layer.

Regional targeting is available for over 60 countries via the Google News endpoints and a comparably wide range through DuckDuckGo's region-locale codes.

Pricing breakdown

Plan Price Monthly requests Rate limit
BASIC $0 50 1,000 req/hour (free plan cap)
PRO $5.99 10,000 1 req/second
ULTRA $29 200,000 1 req/second
MEGA (recommended) $59 400,000 1 req/second

The free BASIC plan requires no credit card and gives you 50 requests per month — enough to test endpoint behavior and validate your integration, but not enough to run even a lightly-used production feed. All paid plans enforce a 1 request-per-second rate limit, and overage handling follows RapidAPI's standard model: you'll see a 429 Too Many Requests response when you exceed your quota.

For a small production application polling headlines a few times per hour, the PRO tier at $5.99/month for 10,000 requests is a reasonable starting point. Applications running continuous monitoring or serving multiple end users will likely need ULTRA or MEGA.

Practical use cases

News aggregator apps — The category and location endpoints map directly to typical app navigation (top stories, sports, technology) without requiring custom query logic.

Market and competitor monitoring — The site-specific endpoint lets you track what specific outlets are publishing about a topic or brand, useful for PR or investor relations tools.

Research and data pipelines — The date-bounded search on /newsv2 supports historical querying within a defined window, which suits journalists or researchers building story timelines.

Localized content feeds — With 60+ country codes and 40 languages, the API can power region-specific news widgets in SaaS products targeting international audiences.

Limitations and things to check before integrating

Latency — The reported average latency is 6,465 ms. That is over six seconds, which is significant. For use cases that tolerate asynchronous fetching — background jobs, scheduled polling, server-side caching — this is manageable. For synchronous, user-facing request paths where a user is waiting on a news feed to load, you will need to architect around this with caching or pre-fetching strategies.

Free tier volume — 50 requests per month on the BASIC plan is very low. A single endpoint test session can consume a meaningful fraction of that. Plan to upgrade to PRO quickly if you move past initial evaluation.

Rate limit ceiling — All paid plans share the same 1 RPS ceiling. For most news feed applications this is sufficient, but if you need burst throughput, the provider suggests contacting them directly for custom arrangements.

Content type — NewsNow surfaces aggregated headlines and metadata from Google News and DuckDuckGo News, not full article text. If your application requires full article bodies, you will need to follow the article URLs and fetch content separately, factoring in publisher paywalls and scraping considerations.

SLA — The provider documents a 99.99% SLA, and the marketplace-reported average success rate is 100%, which aligns well with that claim.

Getting started

  1. Subscribe to the BASIC plan on RapidAPI — no credit card required.
  2. Navigate to the RapidAPI Playground for NewsNow and select an endpoint, such as /newsv2_top_news_cat, to make a test call with sample parameters.
  3. Include your RapidAPI key in the request header as directed in the authentication documentation.
  4. Integrate using any language — code snippets for JavaScript, Python, Java, Shell, and others are available on the Endpoints tab.
  5. Monitor remaining quota via the x-ratelimit-requests-remaining response header to avoid unexpected 429 errors.

For questions or custom quota requirements, the provider can be reached at [email protected].