Real-time Google News data — search articles, browse top stories, and explore topic-based news. All data is scraped directly from Google News and returned as structured JSON.
See real data shapes from every endpoint — no signup required.
/google-news/search
curl -G "https://api.pullapi.com/google-news/search" \
-H "x-rapidapi-key: YOUR_API_KEY"
{
"success": true,
"data": {
"query": "artificial intelligence",
"articles": [
{
"title": "OpenAI announces new breakthrough in reasoning capabilities",
"source": "Reuters",
"published_at": "2026-03-15T08: 30: 00Z",
"time_ago": "4 hours ago",
"link": "https://news.google.com/read/CBMiWmh0dHBzOi8v...",
"image_url": "https://lh3.googleusercontent.com/proxy/example1.jpg"
},
{
"title": "How AI is transforming healthcare diagnostics in 2026",
"source": "The New York Times",
"published_at": "2026-03-15T06: 15: 00Z",
"time_ago": "6 hours ago",
"link": "https://news.google.com/read/CBMiUmh0dHBzOi8v...",
"image_url": "https://lh3.googleusercontent.com/proxy/example2.jpg"
}
],
"total_articles": 2
},
"credits_used": 1,
"cache_hit": false,
"timestamp": "2026-03-15T12: 00: 00+00: 00"
}
3 endpoints across 2 categories.
/google-news/search
Search Google News for articles matching a query. Returns articles with title, source, publication time, link, and thumbnail image. Results can be localized by language and country.
| Name | Type | Required | Description | Example |
|---|---|---|---|---|
query |
string | Yes | Search query for news articles. Can be keywords, phrases, or full questions. Examples:... | artificial intelligence |
language |
string | No | Language code for results. Controls the language of articles returned. Common codes: en... | en |
country |
string | No | Country code for regional news. Controls which country edition of Google News to query. Common... | US |
limit |
integer | No | Maximum number of articles to return. Must be between 1 and 100 | 30 |
{
"success": true,
"data": {
"query": "artificial intelligence",
"articles": [
{
"title": "OpenAI announces new breakthrough in reasoning capabilities",
"source": "Reuters",
"published_at": "2026-03-15T08: 30: 00Z",
"time_ago": "4 hours ago",
"link": "https://news.google.com/read/CBMiWmh0dHBzOi8v...",
"image_url": "https://lh3.googleusercontent.com/proxy/example1.jpg"
},
{
"title": "How AI is transforming healthcare diagnostics in 2026",
"source": "The New York Times",
"published_at": "2026-03-15T06: 15: 00Z",
"time_ago": "6 hours ago",
"link": "https://news.google.com/read/CBMiUmh0dHBzOi8v...",
"image_url": "https://lh3.googleusercontent.com/proxy/example2.jpg"
}
],
"total_articles": 2
},
"credits_used": 1,
"cache_hit": false,
"timestamp": "2026-03-15T12: 00: 00+00: 00"
}
/google-news/top-stories
Fetch the current top stories from the Google News homepage. Returns the most prominent headlines across all categories. Results can be localized by language and country.
| Name | Type | Required | Description | Example |
|---|---|---|---|---|
language |
string | No | Language code for results. Controls the language of articles returned. Common codes: en... | en |
country |
string | No | Country code for regional news. Controls which country edition of Google News to query. Common... | US |
limit |
integer | No | Maximum number of articles to return. Must be between 1 and 100 | 30 |
{
"success": true,
"data": {
"articles": [
{
"title": "Senate passes bipartisan infrastructure bill with broad support",
"source": "Associated Press",
"published_at": "2026-03-15T10: 00: 00Z",
"time_ago": "2 hours ago",
"link": "https://news.google.com/read/CBMiXGh0dHBzOi8v...",
"image_url": "https://lh3.googleusercontent.com/proxy/example3.jpg"
},
{
"title": "Global markets rally as inflation data eases investor concerns",
"source": "Bloomberg",
"published_at": "2026-03-15T09: 45: 00Z",
"time_ago": "2 hours ago",
"link": "https://news.google.com/read/CBMiUGh0dHBzOi8v...",
"image_url": "https://lh3.googleusercontent.com/proxy/example4.jpg"
}
],
"total_articles": 2
},
"credits_used": 1,
"cache_hit": false,
"timestamp": "2026-03-15T12: 00: 00+00: 00"
}
/google-news/topic
Fetch news articles for a specific topic category from Google News. Available topics: world, us, business, technology, entertainment, sports, science, health. Results can be localized by language and country.
| Name | Type | Required | Description | Example |
|---|---|---|---|---|
topic |
string | Yes | News topic category. Must be one of the supported topics: world, us, business, technology,... | world, us, business, technology, entertainment, sports, science, health |
language |
string | No | Language code for results. Controls the language of articles returned. Common codes: en... | en |
country |
string | No | Country code for regional news. Controls which country edition of Google News to query. Common... | US |
limit |
integer | No | Maximum number of articles to return. Must be between 1 and 100 | 30 |
{
"success": true,
"data": {
"topic": "technology",
"articles": [
{
"title": "Apple unveils next-generation M5 chip with 40% performance boost",
"source": "The Verge",
"published_at": "2026-03-15T07: 00: 00Z",
"time_ago": "5 hours ago",
"link": "https://news.google.com/read/CBMiYmh0dHBzOi8v...",
"image_url": "https://lh3.googleusercontent.com/proxy/example5.jpg"
},
{
"title": "Google DeepMind achieves new milestone in protein folding research",
"source": "Wired",
"published_at": "2026-03-14T22: 30: 00Z",
"time_ago": "14 hours ago",
"link": "https://news.google.com/read/CBMiVGh0dHBzOi8v...",
"image_url": "https://lh3.googleusercontent.com/proxy/example6.jpg"
}
],
"total_articles": 2
},
"credits_used": 1,
"cache_hit": false,
"timestamp": "2026-03-15T12: 00: 00+00: 00"
}
Get started in seconds with your preferred language.
curl -G "https://api.pullapi.com/google-news/search?query=artificial intelligence&language=en&country=US" \
-H "x-rapidapi-host: google-news-scraper-api.p.rapidapi.com" \
-H "x-rapidapi-key: YOUR_API_KEY"
HTTP-based API. No Selenium, no Puppeteer, no headless browsers to manage.
Automatic residential proxy rotation handles anti-bot detection for you.
Smart Redis caching means faster repeated queries and lower costs.
No monthly commitment. Free tier included. Pay only for what you use.
What developers build with the Google News Scraper API.
More APIs in News.
Influencer Analytics · Content Monitoring
Creator Analytics · Trend Tracking
Channel Analytics · Video Research
Page Analytics · Marketplace Monitoring
Sentiment Analysis · Trend Detection
Sentiment Analysis · Influencer Monitoring
Start with the free tier. No credit card required.
Subscribe on RapidAPI →