Skip to main content
This section documents the news articles data returned by the Google News endpoint. News articles are part of the Google News response — no separate API call is needed.

Article fields

FieldTypeDescription
positionnumberPosition in news results (1-indexed)
titlestringTitle of the news article
linkstringURL of the news article
snippetstringText snippet describing the article
sourcestringNews source/publisher name
datestringPublication date (e.g., “2 hours ago”)
thumbnailstringThumbnail image URL (when available)

Example request

{
  "query": "climate change",
  "country": "US"
}
This produces a response containing the newsResults array shown below.

Example response

{
  "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"
      }
    ]
  }
}