Google Autocomplete Search
Retrieve Google Autocomplete suggestions based on a search query. Useful for keyword research, predictive search, and SEO optimization.
If you already know that you want to use Google Autocomplete Search, this page is the one you should read. It shows the required input, the filters you can apply, how pagination works, and what localization controls are available.
At a Glance
| Field | Value |
|---|---|
| Name | Google Autocomplete Search |
| Scraper | google_autocomplete |
| Engine | google_autocomplete_search |
| Website | |
| Website URL | googleautocomplete.com |
| Output Format | json |
| Version | 1.0.0 |
| Parameter Count | 4 |
| Parameter Groups | Search Query (1), Localization (2), Request Controls (1) |
Request Example
This is the real request body used to validate google_autocomplete during this docs refresh. For /v1/serp, the engine field should be the engine's scraper value.
curl -X POST "https://run.xcrawl.com/v1/serp" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"engine":"google_autocomplete","q":"open"}'Response Example
The JSON below comes from the same live response. Long strings, data URLs, and large arrays were shortened so the example stays readable.
{
"search_metadata": {
"created_at": "2026-03-26 08:33:44 UTC",
"id": "01KMMMEB039C8Q8BP1X3AESH47",
"json_endpoint": "https://serp.xcrawl.com/01KMMMEB039C8Q8BP1X3AESH47.json",
"processed_at": "2026-03-26 08:33:44 UTC",
"raw_html_file": "https://serp.xcrawl.com/01KMMMEB039C8Q8BP1X3AESH47.html",
"status": "completed",
"total_time_taken": 2
},
"search_parameters": {
"engine": "google_autocomplete",
"q": "open"
},
"total_credits_used": 1,
"suggestions": [
{
"link": "https://www.google.com/search?q=openclash",
"relevance": 700,
"type": "QUERY",
"value": "openclash"
},
{
"_note": "14 more items omitted"
}
]
}Required Parameters
If you are sending your first request with this engine, start here. Requiredness is based on properties.<field>.must, not the top-level required array.
| Field | Type | Group | Description |
|---|---|---|---|
q | string | Search Query | The keyword or phrase you want this search engine to look up. |
Available Parameters
The sections below follow the same parameter groups as the backend, but the field descriptions have been rewritten into shorter, user-facing wording so they are easier to scan.
Search Query
| Field | Type | Required | Description |
|---|---|---|---|
q | string | Yes | The keyword or phrase you want this search engine to look up. |
Localization
| Field | Type | Required | Description |
|---|---|---|---|
gl | string | No | Country or region code used to localize the results. |
hl | string | No | Interface language used for the search and returned SERP labels. |
Additional Constraints
gl:Default:us;Options: 244 options. Examples:af,al,dz,as,adhl:Default:en;Options: 157 options. Examples:af,ak,sq,ws,am
Request Controls
| Field | Type | Required | Description |
|---|---|---|---|
no_cache | boolean | No | Skip cached results and force a fresh fetch. |
Additional Constraints
no_cache:Default:false
