Google Suggest
The google_suggest
source is designed to retrieve Google search term suggestions.
Request samples
API requests Google Suggestions page to retrieve suggestions for keyword adidas
.
curl 'https://realtime.oxylabs.io/v1/queries' \
--user 'USERNAME:PASSWORD' \
-H 'Content-Type: application/json' \
-d '{
"source": "google_suggest",
"query": "adidas"
}'
We use synchronous Realtime integration method in our examples. If you would like to use Proxy Endpoint or asynchronous Push-Pull integration, refer to the integration methods section.
Request parameter values
Generic
Basic setup and customization options for scraping Google suggestions.
- mandatory parameter
Localization
Adapt search results to specific geographical locations and languages.
geo_location
The geographical location that the result should be adapted for. Using this parameter correctly is extremely important to get the right data. For more information, read about our suggested geo_location
parameter structures here.
-
locale
Accept-Language
header value which changes your Google search page web interface language. More info.
-
Output example
{
"results": [
{
"content": "[\"adidas\",[\"adidas\",\"adidas vietnam\",\"adidas us\",\"adidas uk\",\"adidas jp\",\"adidas superstar\",\"adidas stan smith\",\"adidas outlet\",\"adidas ultra boost\",\"adidas alphabounce\"],[],{\"google:suggestsubtypes\":[[512,433],[512,433],[512,433],[512],[3],[512],[512],[512],[512],[512]]}]",
"created_at": "2022-04-22 12:55:20",
"updated_at": "2022-04-22 12:55:24",
"page": 1,
"url": "https://www.google.com/complete/search?client=firefox&q=adidas&hl=en",
"job_id": "6923252904564388865",
"status_code": 200
}
]
}

Last updated
Was this helpful?