> ## Documentation Index
> Fetch the complete documentation index at: https://cloro.dev/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# News articles

> Schema for structured news articles returned by the Google News endpoint, including titles, links, snippets, sources, publication dates, and thumbnails.

This section documents the **news articles** data returned by the [Google News endpoint](/api-reference/endpoint/monitor-google-news). News articles are part of the Google News response, so no separate API call is needed.

<Frame caption="News articles in Google News">
  <img src="https://mintcdn.com/cloro/Qv2xgJAgMecwTTRq/images/google/news-articles.webp?fit=max&auto=format&n=Qv2xgJAgMecwTTRq&q=85&s=5fbb46041ebabf9308300786a8174840" alt="News articles in Google News" width="892" height="840" data-path="images/google/news-articles.webp" />
</Frame>

## Article fields

| 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)   |

## Example request

```json theme={null}
{
  "query": "climate change",
  "country": "US"
}
```

This produces a response containing the `newsResults` array shown below.

## Example response

```json theme={null}
{
  "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"
      }
    ]
  }
}
```
