Overview
PeakMetrics is a media intelligence API available via RapidAPI that aggregates news articles and public datasets for tracking narratives, mentions, and trends across online media. An API key from RapidAPI is required to use it. It is useful for monitoring brand mentions, tracking news stories, or building media analysis dashboards.
Beginner Tip
Sign up for a free RapidAPI account and subscribe to PeakMetrics to get your API key. Include the RapidAPI headers (X-RapidAPI-Key and X-RapidAPI-Host) in every request, as shown in the RapidAPI dashboard code examples.
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
articles List of news article objects returned by the query articles[].title Headline of the news article articles[].url Direct URL to the full article articles[].source Name of the publication or media outlet articles[].published_at Publication date and time in ISO 8601 format Implementation Example
const url = "https://rapidapi.com/peakmetrics-peakmetrics-default/api/peakmetrics-news";
// 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
Related Tags
Similar APIs
View All →Black History Facts
⭐ Beginner's PickThe Black History Facts API gives you access to one of the largest databases of Black history facts on the web.
CARTO
CARTO is a geospatial platform API that provides location intelligence and data analysis tools for mapping and prediction.
Enigma Public
Enigma Public is a platform that aggregates a broad collection of public datasets from government and other sources into a single searchable API.
Joshua Project
The Joshua Project API provides data on people groups around the world, focusing on those with the fewest followers of Christ for missionary research purposes.
Kaggle
Kaggle provides programmatic access to create and interact with datasets, notebooks, and connect with kaggle via REST API.