# Organic Results

Each basic Google search returns a number of organic results. Only exceptional keywords end up without any results from Google. In the Google Search API, all organic results are grouped under the `organic_results` key and include the following elements:

<table><thead><tr><th width="195">Element</th><th width="121">Type</th><th>Description</th></tr></thead><tbody><tr><td><code>title</code></td><td><code>String</code></td><td>Title of the scraped Google result </td></tr><tr><td><code>link</code></td><td><code>String</code></td><td>Link to the result</td></tr><tr><td><code>displayed_link</code></td><td><code>String</code></td><td>Linked displayed on the Google search page</td></tr><tr><td><code>snippet</code></td><td><code>String</code></td><td>Description of the result</td></tr><tr><td><code>position</code></td><td><code>Integer</code></td><td>Result position on page</td></tr></tbody></table>

### Organic Results Request Examples

## Request Example That Returns Organic Elements

<mark style="color:blue;">`GET`</mark> `https://serpapi.webscrapingapi.com/v1?engine=google&api_key=<YOUR_API_KEY>&q= google`

This is a basic GET request that returns the organic results found on the Google page.

#### Query Parameters

| Name                                       | Type   | Description      |
| ------------------------------------------ | ------ | ---------------- |
| q<mark style="color:red;">\*</mark>        | String | `google`         |
| api\_key<mark style="color:red;">\*</mark> | String | `<YOUR_API_KEY>` |

{% tabs %}
{% tab title="200: OK API response" %}

```javascript
{
    ...
    "organic_results": [
        {
        "title": "Google",
        "link": "https://www.google.com/",
        "displayed_link": "https://www.google.com",
        "snippet": "Search the world's information, including webpages, images, videos and more. Google has many special features to help you find exactly what you're looking ...",
        "position": 1
        },
        {
        "title": "Google",
        "link": "https://www.google.com/",
        "displayed_link": "https://www.google.com",
        "snippet": "Search the world's information, including webpages, images, videos and more. Google has many special features to help you find exactly what you're looking ...",
        "position": 2
        },
        {
        "title": "The Keyword | Google",
        "link": "https://blog.google/",
        "displayed_link": "https://blog.google",
        "snippet": "Discover all the latest about our products, technology, and Google culture on our official blog.",
        "position": 3
        },
        {
        "title": "Google - About Google, Our Culture & Company News",
        "link": "https://about.google/",
        "displayed_link": "https://about.google",
        "snippet": "Stay up to date with Google company news and products. Discover stories about our culture, philosophy, and how Google technology is impacting others.",
        "position": 4
        },
        {
        "title": "Browse All of Google's Products & Services - Google",
        "link": "https://about.google/intl/en_us/products/",
        "displayed_link": "https://about.google › intl › en_us › products",
        "snippet": "Browse a list of Google products designed to help you work and play, stay organized, get answers, keep in touch, grow your business, and more.",
        "position": 5
        },
        {
        "title": "Google - Home | Facebook",
        "link": "https://m.facebook.com/Google/",
        "displayed_link": "https://m.facebook.com › ... › Google",
        "snippet": "Google, Mountain View, CA. 28147760 likes · 42224 talking about this · 607 ... Google is on Facebook. To connect with Google, log in or create an account.",
        "position": 6
        }
    ],
    ...
}
```

{% endtab %}
{% endtabs %}

<figure><img src="https://1192456954-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F9wbsYOleiAqS785aMtPp%2Fuploads%2FHmBDc424yqqh2XHQYByS%2Forganic-results.png?alt=media&#x26;token=bf8941e3-9c7d-424f-a8e2-d67713c740c2" alt=""><figcaption><p>Scrape Google Organic Results</p></figcaption></figure>


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.webscrapingapi.com/google-search-api/google-apis-response/google-search-api/organic-results.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
