Skip to main content
This section documents the organic results data returned by the Google Search endpoint. Organic results are part of the Google response — no separate API call is needed.

Example request

{
  "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.
Organic results in Google Search

Organic result structure

FieldTypeDescription
positionnumberPosition in search results (1-indexed)
titlestringTitle of the search result
linkstringURL of the search result
displayedLinkstringFormatted URL as displayed in search results
snippetstringSearch result snippet
pagenumberPage number where result was found (for multi-page)

Response example

{
  "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 the best laptops for software developers.",
        "page": 1
      }
    ]
  }
}