> For the complete documentation index, see [llms.txt](https://help.netnut.io/netnut-documentation/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://help.netnut.io/netnut-documentation/netnut-scraper-apis/serp-api/google-scraper/google-search/fast-serp.md).

# Fast SERP

### Fast SERP for Google

Some use cases require faster Google Search responses and do not need advanced SERP features such as AI Overview extraction or extended page parsing.

To support these use cases, NetNut’s SERP API offers **Fast SERP** extraction for Google searches via the `fastSerp` parameter.

This feature is designed to return the main Google organic results faster by focusing on the core SERP data points and reducing additional processing.

Fast SERP is recommended when the main requirement is receiving Google organic results quickly and consistently.

***

### Parameter: `fastSerp`

| Field            | Value                                                                                              |
| ---------------- | -------------------------------------------------------------------------------------------------- |
| Type             | Boolean `0 / 1`                                                                                    |
| Default          | `0`                                                                                                |
| Supported Engine | Google Search                                                                                      |
| Description      | When set to `1`, the API enables faster Google SERP extraction, focused mainly on organic results. |

***

### Supported Parameters

When using `fastSerp=1`, you can still use the regular Google SERP supported parameters, including:

| Parameter | Description                                                                                                                                                   |
| --------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `q`       | Search query                                                                                                                                                  |
| `hl`      | Language                                                                                                                                                      |
| `gl`      | Country                                                                                                                                                       |
| `uule`    | Encoded Google location parameter                                                                                                                             |
| `device`  | Device type                                                                                                                                                   |
| `rawHtml` | Controls raw HTML response behavior. `rawHtml=1` returns the parsed JSON response together with the raw HTML. `rawHtml=2` returns only the raw HTML response. |

***

### Unsupported Features

The following feature is **not supported** when using Fast SERP:

| Feature       | Status                          |
| ------------- | ------------------------------- |
| `enhancedAio` | Not supported with `fastSerp=1` |

Fast SERP is optimized for faster response time and organic result extraction. Advanced extraction features that require additional rendering or parsing are not available in this mode.

***

### Time & Performance

Fast SERP is designed to reduce processing time compared to the standard Google SERP flow.

Actual response time may vary depending on Google response behavior, location, request parameters, and system load.

***

### Example API Request

```
GET https://serp-api.netnut.io/search?q=coffee&hl=en&gl=us&fastSerp=1
```

***

## Fast SERP Response Structure

When using `fastSerp=1`, the response will include the standard Google SERP response structure, with `organic` as the main data point.

### Main Response Fields

| Field     | Type   | Description                                           |
| --------- | ------ | ----------------------------------------------------- |
| `url`     | string | Final Google search URL used for the request          |
| `general` | object | General metadata about the SERP response              |
| `input`   | object | Original request/job metadata                         |
| `organic` | array  | Organic search results extracted from the Google SERP |

***

### Example Response

```
{  "url": "http://www.google.com/search?gl=US&hl=en&q=coffee&uule=w+CAIQICINVW5pdGVkIFN0YXRlcw",  "general": {    "searchEngine": "google_search",    "language": "en",    "device": "desktop",    "searchType": "text",    "pageTitle": "coffee - Google Search",    "timestamp": "2026-05-20T08:36:16.327475116Z",    "render": false  },  "input": {    "originalUrl": "http://www.google.com/search?gl=US&hl=en&q=coffee&uule=w+CAIQICINVW5pdGVkIFN0YXRlcw",    "jobId": "ce745c4c-0c9c-44e4-91d2-163d3cc1b12a"  },  "organic": [    {      "title": "Coffee",      "description": "Coffee is a beverage brewed from roasted, ground coffee beans. Darkly colored, bitter, and slightly acidic, coffee has a stimulating effect on humans.",      "displayLink": "https://en.wikipedia.org › wiki › Coffee",      "link": "https://en.wikipedia.org/wiki/Coffee",      "imageAlt": "coffee from en.wikipedia.org",      "timeSince": "",      "rank": 1    },    {      "title": "Starbucks Coffee Company",      "description": "More than just great coffee. Explore the menu, find a store near you, and learn more about Starbucks coffee and culture.",      "displayLink": "https://www.starbucks.com",      "link": "https://www.starbucks.com/",      "imageAlt": "",      "timeSince": "",      "rank": 2    },    {      "title": "Coffee | The Nutrition Source",      "description": "Coffee is one of the most widely consumed beverages in the world and contains caffeine, antioxidants, and other active compounds.",      "displayLink": "https://nutritionsource.hsph.harvard.edu › food-features › coffee",      "link": "https://nutritionsource.hsph.harvard.edu/food-features/coffee/",      "imageAlt": "",      "timeSince": "",      "rank": 3    }  ]}
```

***

## Organic Result Fields

Each item inside the `organic` array may include the following fields:

| Field         | Type   | Description                                    |
| ------------- | ------ | ---------------------------------------------- |
| `title`       | string | Title of the organic result                    |
| `description` | string | Snippet or description shown under the result  |
| `displayLink` | string | Displayed URL/path shown on Google             |
| `link`        | string | Direct result URL                              |
| `imageAlt`    | string | Image alt text, when available                 |
| `timeSince`   | string | Time indicator shown by Google, when available |
| `rank`        | number | Organic result position                        |

***

### Notes

* `organic` is the main data point returned by Fast SERP.
* Some fields may be empty when Google does not return them for a specific result.
* The structure of organic results remains aligned with the standard Google SERP organic response.
* `enhancedAio` is not supported together with `fastSerp=1`.
* This feature is recommended when speed is more important than advanced SERP features.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

```
GET https://help.netnut.io/netnut-documentation/netnut-scraper-apis/serp-api/google-scraper/google-search/fast-serp.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
