Currents API
Overview
Currents API delivers the latest news from thousands of sources, blogs, and online forums in real time. It supports filtering by language, country, and category, making it easy to tailor news feeds for specific audiences. The free tier is generous enough for personal projects and prototypes.
Beginner Tip
Register on the Currents website to get your free API key instantly without any approval process. Use the language parameter like language=en to keep results consistent when building English-language news apps.
Available Data
Example Response
{
"totalArticles": 100,
"articles": [
{
"title": "Tech Industry Sees Record Growth",
"source": {
"name": "TechNews",
"url": "https://technews.com"
},
"publishedAt": "2025-01-15T08:00:00Z",
"description": "The technology sector reported unprecedented growth...",
"image": "https://example.com/article-image.jpg",
"url": "https://technews.com/article/123"
}
]
} Field Reference
news Array of news article objects from various sources news[].title Headline of the news article news[].url Direct link to the original article news[].author Author of the article if available, otherwise null news[].published Publication date and time in ISO 8601 format news[].category List of topic categories the article belongs to such as technology or politics Implementation Example
const url = "https://currentsapi.services/";
// Replace headers or query params with the values required by this API.
const response = await fetch(url, {
headers: {
"X-API-Key": "YOUR_API_KEY"
}
});
if (!response.ok) throw new Error(`Request failed: ${response.status}`);
const data = await response.json();
console.log(data); What Can You Build?
Note: These code examples are AI-generated and unverified. Always refer to the official API documentation for accurate usage.
Common Errors & Troubleshooting
Matrix Score Breakdown
Partially tested on Apr 5, 2026
Technical Specifications
Alternatives to Currents
Technical alternatives for different use cases.
Google News-sourced with better article quality
Higher quality news article sourcing
Completely free API access
Free news API with keyword and region filtering
Premium source access and real-time delivery
Free news aggregation for small projects
70K+ sources with powerful search capabilities
Comprehensive multi-source news search
Free production use (restricted free tier)
Similar APIs
View All →Associated Press
The Associated Press Developer API gives you programmatic access to AP news content and metadata, one of the most trusted wire services in the world.
GNews
⭐ Beginner's PickGNews is a news search API that aggregates articles from thousands of sources worldwide and lets you filter by keyword, language, country, and topic.
MarketAux
MarketAux delivers real-time financial news with sentiment analysis, ticker tagging, and market statistics in a clean JSON format.
Mediastack
⭐ Beginner's PickMediastack is a simple REST API that delivers live and historical news articles from thousands of global sources.
New York Times
⭐ Beginner's PickThe New York Times API gives developers access to articles, book reviews, movie reviews, bestseller lists, and more from one of the most prestigious news organizations in the world.