Google Autocomplete Scraper avatar

Google Autocomplete Scraper

Pricing

from $1.00 / 1,000 results

Go to Apify Store
Google Autocomplete Scraper

Google Autocomplete Scraper

Scrape Google autocomplete/suggestion results for keyword research

Pricing

from $1.00 / 1,000 results

Rating

0.0

(0)

Developer

codingfrontend

codingfrontend

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

2 days ago

Last modified

Share

Features

  • Autocomplete Suggestions: Extracts keyword suggestions that Google shows as you type in the search box
  • Suggestion Types: Identifies whether each suggestion is a standard query, trending topic, or other type
  • Relevance Scores: Captures relevance/ranking data associated with each suggestion
  • Position Tracking: Records the position of each suggestion in Google's dropdown
  • Keyword Research: Ideal for SEO keyword research, content ideation, and competitive analysis
  • Localization Support: Configurable country (gl) and language (hl) for region-specific suggestions
  • Proxy Support: Built-in support for Google SERP proxy to avoid rate limiting

Input Parameters

ParameterTypeRequiredDefaultDescription
queryStringYes"how to"The keyword or partial query to get autocomplete suggestions for
maxItemsIntegerNo50Maximum number of suggestions to return (1–500)
glStringNo"us"Country code for localized suggestions (e.g., us, in, uk)
hlStringNo"en"Language code for suggestions (e.g., en, hi, fr)
proxyConfigurationObjectNoApify GOOGLE_SERPProxy settings for the scraper

Input Schema Example

{
"query": "best programming language",
"maxItems": 20,
"gl": "us",
"hl": "en",
"proxyConfiguration": {
"useApifyProxy": true,
"apifyProxyGroups": ["GOOGLE_SERP"]
}
}

Output Schema

The scraper outputs structured JSON data for each autocomplete suggestion returned by Google.

Main Fields

FieldTypeDescription
positionIntegerPosition of the suggestion in the autocomplete dropdown
suggestionStringThe autocomplete suggestion text
typeStringType of suggestion (query, trending, etc.)
relevanceNumberRelevance score assigned by Google

Autocomplete Suggestion Example

{
"position": 1,
"suggestion": "best programming language for beginners",
"type": "query",
"relevance": 600
},
{
"position": 2,
"suggestion": "best programming language for web development",
"type": "query",
"relevance": 565
},
{
"position": 3,
"suggestion": "best programming language 2025",
"type": "trending",
"relevance": 530
}