Example Requests
These examples show how to send Google News API requests with query, pagination, and raw HTML options.
Basic Google News Search
curl -X GET "https://serp-api.netnut.io/search?engine=google_news&q=ai&hl=en&gl=us" \
-U "username:password"{
"url": "https://www.google.com/search?gl=US&hl=en&q=ai&tbm=nws",
"general": {
"searchEngine": "google_news",
"resultsCount": 13600000,
"searchTime": 0.76,
"language": "en",
"device": "desktop",
"searchType": "text",
"pageTitle": "ai - Google Search",
"timestamp": "2026-04-19T14:13:12.868546494Z",
"render": false
},
"input": {
"originalUrl": "https://www.google.com/search?gl=US&hl=en&q=ai&tbm=nws",
"jobId": "36344139-9f78-44f3-8d0c-f0d9f7e2d8ea"
},
"newsResults": [
{
"title": "Should you really trust health advice from an AI chatbot?",
"source": "BBC",
"timeSince": "15 hours ago",
"link": "https://www.bbc.com/news/articles/clyepyy82kxo",
"image": "data:image/jpeg;base64,...",
"description": "So should we trust the likes of ChatGPT, Gemini and Grok? Is using them any different to an old-fashioned internet search?",
"rank": 1
},
{
"title": "There's an 'art' to writing AI prompts for personal finance, MIT professor says",
"source": "CNBC",
"timeSince": "24 hours ago",
"link": "https://www.cnbc.com/2026/04/18/ai-prompts-personal-finance-advice.html",
"image": "data:image/jpeg;base64,...",
"description": "Many people are turning to artificial intelligence for personal finance advice.",
"rank": 2
}
],
"pagination": {
"nextPageLink": "https://www.google.com/search?q=ai&tbm=nws&start=10",
"nextPageStart": 10,
"currentPage": 1,
"nextPage": 2,
"otherPages": {
"2": "https://www.google.com/search?q=ai&tbm=nws&start=10",
"3": "https://www.google.com/search?q=ai&tbm=nws&start=20"
}
},
"pagesProcessed": 1
}Paginated Request
Request with rawHtml=1
Request with rawHtml=2
Last updated
