
News articles in Google News
Documentation Index
Fetch the complete documentation index at: /docs/llms.txt
Use this file to discover all available pages before exploring further.
The AI Assistant is here to help — ask it anything instead of browsing through the pages.
Schema for structured news articles returned by the Google News endpoint, including titles, links, snippets, sources, publication dates, and thumbnails.

News articles in Google News
{
"query": "climate change",
"country": "US"
}
| Field | Type | Description |
|---|---|---|
position | number | Position in news results (1-indexed) |
title | string | Title of the news article |
link | string | URL of the news article |
snippet | string | Text snippet describing the article |
source | string | News source/publisher name |
date | string | Publication date (e.g., “2 hours ago”) |
thumbnail | string | Thumbnail image URL (when available) |
{
"success": true,
"result": {
"newsResults": [
{
"position": 1,
"title": "Breaking climate news",
"link": "https://example.com/article",
"snippet": "Scientists report new findings on...",
"source": "Example News",
"date": "2 hours ago",
"thumbnail": "https://example.com/thumb.jpg"
}
]
}
}
Was this page helpful?