Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.cloro.dev/llms.txt

Use this file to discover all available pages before exploring further.

This section documents the news articles data returned by the Google News endpoint. News articles are part of the Google News response, so no separate API call is needed.
News articles in Google News

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