Product

How Jentic Works

From API assessment to production deployment in four simple steps.

Product Overview

PLATFORM

Jentic OneSelf-hosted, open-source control plane between your agents and any APIAPI DirectoryBrowse 10,000+ APIs ready for AI agent integrationAPI ScorecardAssess your APIs for AI-readiness with automated scoringAgentic SandboxSafely simulate AI agents with your production APIsJenticSign in to the Jentic web app

CAPABILITIES

IntegrationConnect AI agents to your existing systemsWorkflowsDiscover and capture successful agent workflowsGovernanceDefine, observe, and enforce AI policies

TOOLS

Arazzo UIVisualize Arazzo workflows as interactive documentationArazzo EditorBuild and edit multi-step API workflows visually
Pricing
Developers

GET STARTED

DocumentationGuides and API referenceQuickstartGet up and running in minutes

COMMUNITY

GitHubOpen source projects and examples
Resources
BlogLatest articles and insightsPress & MediaBrand assets and press contactOpen StandardsBuilt on open specs. Never locked in.NewsletterAPIs, AI agents, mixed with architecture and strategy.
Company
About UsOur mission and teamCareersJoin our teamContactGet in touch
Install Jentic OneBook a Demo
How Jentic WorksJentic OneAPI DirectoryAPI ScorecardAgentic SandboxJenticIntegrationWorkflowsGovernanceArazzo UIArazzo Editor
Pricing
DocumentationQuickstartGitHub
BlogPress & MediaOpen StandardsNewsletter
About UsCareersContact
Request a demoInstall Jentic One
Jentic
For Enterprises
  • Product Overview
  • Agentic Sandbox
  • Book a Demo
For Developers
  • Jentic One
  • Documentation
  • GitHub
Company
  • About Jentic
  • Careers
  • Contact Us
ISO/IEC 27001:2022 certification badge issued by Prescient Security

Information Security Management System

Certified to ISO/IEC 27001:2022 by Prescient Security

Terms & Conditions•Privacy Policy•
© 2026 Jentic. All rights reserved.
APIs / Data Enrichment / News API
News API logo

News API

★ Only Publicly Available OpenAPI DocumentData EnrichmentData TransformationapiKey3 EndpointsREST

For Agents

Search and retrieve news articles from 80,000+ worldwide sources. Returns article metadata, source attribution, and publication timestamps for AI-assisted research and monitoring.

Use for: I want to search news articles about a specific company, Find all articles mentioning a product launch in the last 7 days, Get today's top headlines from the United States, Search news in French about climate policy

Not supported: Does not handle social media posts, full article body extraction, or sentiment analysis — use for news article search and headline retrieval only.

Jentic publishes the only available OpenAPI specification for News API, keeping it validated and agent-ready. News API searches and retrieves live articles from over 80,000 news sources worldwide, returning article titles, descriptions, URLs, source attribution, and publication timestamps. The API exposes three operations — full article search across the open web via /everything, breaking-news headlines filtered by country or category via /top-headlines, and a directory of supported sources via /top-headlines/sources. Authentication uses an X-Api-Key header tied to a NewsAPI.org account.

Jentic One on GithubView OpenAPI Document

Install Jentic One Beta

Connect the News API to your agent

Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the News API, or any other public or private API you need. You set the rules, the agent never sees your credentials, and every call is logged.

Two steps, two machines. Install the instance in a safe environment, then register your agent from wherever it runs.

1

Step 1: Jentic One Host machine

# On the machine that will host your Jentic One instance:
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh
2

Step 2: Agent machine

# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh
jentic register       # connects your agent to your Jentic One instance

Jentic One is in public beta. The setup above keeps your agent separate from the instance, which is what you want before using real credentials: an agent running as the same OS user as Jentic One can read its stored keys directly. Just evaluating? A single local install is fine to start. See the secure deployment guide for the tiers.

Capabilities

What an agent can do with News API.

Search the live news index across 80,000+ sources by keyword, date range, language, and domain via GET /everything

Retrieve breaking-news top headlines filtered by country, category, or source through GET /top-headlines

Enumerate the supported news sources directory with country, language, and category metadata via GET /top-headlines/sources

Filter articles by ISO date range to track coverage of an event over time

Restrict results to a specific publisher domain to monitor a single outlet's output

Use Cases

Patterns agents use News API for, with concrete tasks.

★ Brand and Competitor Monitoring

Marketing and PR teams use News API to track mentions of their brand, products, and competitors across worldwide press. GET /everything accepts keyword queries, date ranges, language filters, and source filters so a daily cron job can pull the previous day's mentions, deduplicate by URL, and feed them into an internal review queue. The 80,000+ source coverage means coverage in regional press is captured alongside major outlets.

Fetch all articles from the last 24 hours mentioning 'Acme Corp' in English and return titles, sources, and URLs

Breaking-News Dashboards

Newsroom and trading-desk dashboards pull current top headlines via GET /top-headlines filtered by country and category. The endpoint returns the same set of headlines that NewsAPI's homepage surfaces, so a refresh every few minutes is sufficient for an editorial or market-watch view. Source attribution and publication timestamps are included on every article.

Get the top 20 business headlines for the United States and return them sorted by publication time

Event Timeline Research

Analysts researching how an event was covered over time call GET /everything with a keyword query and successive date windows. By stepping the from and to parameters week by week, an agent can build a coverage timeline showing volume, language, and outlet distribution. This is useful for due-diligence reports, academic research, and post-incident reviews.

For the search term 'merger announcement Q1 2026', return article counts grouped by week between January and March

Agent-Powered News Briefing

An AI agent uses News API through Jentic to generate morning briefings tailored to a user's interests. The agent queries GET /top-headlines for the user's country and categories, summarises the headlines, and formats a digest. Source attribution is preserved so the user can click through to the original article when something looks relevant.

Build a 5-bullet morning briefing covering the top US technology, business, and health headlines for the current day

Key Endpoints

3 endpoints — jentic publishes the only available openapi specification for news api, keeping it validated and agent-ready.

METHOD

PATH

DESCRIPTION

GET

/everything

Search the live news index by keyword, date, language, and source

GET

/top-headlines

Get current breaking-news headlines filtered by country or category

GET

/top-headlines/sources

List supported news sources with country, language, and category metadata

GET

/everything

Search the live news index by keyword, date, language, and source

GET

/top-headlines

Get current breaking-news headlines filtered by country or category

GET

/top-headlines/sources

List supported news sources with country, language, and category metadata

Why Jentic?

Three things that make agents converge on Jentic-routed access.

Credential management

Credential isolation

News API X-Api-Key values are stored encrypted in the Jentic vault. Agents receive a scoped credential reference and Jentic injects the header at execution time, so the raw key stays out of the agent's context window.

Intent-based discovery

Intent-based discovery

Agents search Jentic for intents like 'search news articles' or 'get top headlines for a country' and Jentic returns the matching News API operation with its query parameter schema, so the agent calls the right endpoint with valid filters.

Time to first call

Time to first call

Direct integration: 2-3 hours to register, wire the X-Api-Key header, handle pagination, and parse the article JSON. Through Jentic: under 15 minutes — search, load schema, execute.

Related APIs

Alternatives and complements available in the Jentic catalogue.

Alternative

GNews API

→

GNews offers similar headline and article search across worldwide sources with a different free tier

Choose GNews when News API's free quota is exhausted or when GNews's source mix gives better coverage in a specific region. Choose News API for its breadth of 80,000+ sources.

Alternative

Mediastack API

→

Mediastack provides live and historical news from 7,500+ sources with country and language filters

Choose Mediastack when an agent needs JSON-only output and predictable per-call pricing. Choose News API when the broader source list and the curated /top-headlines endpoint matter more.

Complementary

Bing Search API

→

Bing's search API covers web and news together; News API focuses only on news with stronger filtering

Use Bing for combined web-plus-news research where the agent does not know in advance whether the answer lives in news. Use News API when the task is specifically news monitoring or article retrieval.

FAQs

Specific to using News API through Jentic.

Why is there no official OpenAPI spec for News API?

NewsAPI.org does not publish an OpenAPI specification. Jentic generates and maintains this spec so that AI agents and developers can call News API via structured tooling. It is validated against the live API and kept up to date. Get started at https://app.jentic.com/sign-up.

What authentication does the News API use?

News API uses an API key passed in the X-Api-Key request header. Through Jentic the key sits in the encrypted vault and Jentic injects it on each call, so the raw key never enters the agent's prompt or response context.

Can I search news articles by date range with the News API?

Yes. GET /everything accepts from and to query parameters in ISO-8601 format, so an agent can pull articles for a specific window. The /top-headlines endpoint, in contrast, returns only current breaking news and does not accept a date range.

What is the difference between /everything and /top-headlines?

/everything searches the full historical news index and supports keyword queries, date ranges, language, source, and domain filters. /top-headlines returns the smaller, curated set of current breaking-news headlines and is filtered by country, category, or source. Use /everything for research and monitoring; use /top-headlines for live front-page feeds.

How do I build a news monitoring agent with News API through Jentic?

Search Jentic for 'search news articles by keyword', load the GET /everything schema, and execute with your query string and date range. Jentic returns the structured article list — title, source, URL, publication timestamp — that the agent can summarise or store.

Is News API free to use?

NewsAPI.org offers a free developer tier intended for non-commercial and prototype use, with paid plans for production usage and historical search depth. The API surface is identical across plans; what changes is request volume, the look-back window, and commercial-use rights.

GET STARTED

Start building with News API

Explore with Jentic
View OpenAPI Document