> ## 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.

# Organic results

> Schema for organic search results returned by the Google Search endpoint, including page title, URL, snippet, position, sitelinks, and rich enrichments.

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

## Example request

```json theme={null}
{
  "query": "best laptops for programming",
  "country": "US"
}
```

This produces a response containing the `organicResults` array documented below.

## Overview

Organic results are the standard non-paid search results returned by Google Search. They include title, link, snippet, and position metadata for each result.

<Frame caption="Organic results in Google Search">
  <img src="https://mintcdn.com/cloro/Qv2xgJAgMecwTTRq/images/google/search-organic-results.webp?fit=max&auto=format&n=Qv2xgJAgMecwTTRq&q=85&s=7c1b9dc655731e0be5e5d6493b26536d" alt="Organic results in Google Search" width="1388" height="962" data-path="images/google/search-organic-results.webp" />
</Frame>

## Organic result structure

| Field           | Type   | Description                                         |
| --------------- | ------ | --------------------------------------------------- |
| `position`      | number | Position in search results (1-indexed)              |
| `title`         | string | Title of the search result                          |
| `link`          | string | URL of the search result                            |
| `displayedLink` | string | Formatted URL as displayed in search results        |
| `snippet`       | string | Search result snippet                               |
| `page`          | number | Page number where result was found (for multi-page) |

## Response example

```json theme={null}
{
  "success": true,
  "result": {
    "organicResults": [
      {
        "position": 1,
        "title": "Best Laptops for Programming in 2026",
        "link": "https://example.com/best-laptops-for-programming",
        "displayedLink": "example.com › best-laptops",
        "snippet": "We tested dozens of laptops, and these are the top picks for developers in 2026...",
        "page": 1
      },
      {
        "position": 2,
        "title": "Top 10 Developer Laptops Reviewed",
        "link": "https://example.com/dev-laptops-review",
        "displayedLink": "example.com › dev-laptops-review",
        "snippet": "An in-depth comparison of laptops for software developers.",
        "page": 1
      }
    ]
  }
}
```
