Google API

Google Autocomplete API

Get Google search autocomplete suggestions for a partial query (keyword ideas).

POST/v1/run/google.autocomplete
Uptime
100.00%
30d · 613 calls
Requests
613
30d · weekly, last 12 wks
Response
0.6s
median · 30d

Pricing

One price, in dollars

Try it

Make your first request

Open in
Get a free key
Sample response
Free runs return only the first 3 results. Fund a key to get the full response.
{
  "data": {
    "query": "example",
    "suggestions": [
      {
        "value": "19.99"
      }
    ]
  },
  "found": true
}
Response interface
interface GoogleAutocompleteResponse {
  data: {
    query: string;
    suggestions: {
      value: string;
    }[];
  } | null;
  found: boolean;
}

Full parameter and response reference - every field, type, and example for this endpoint.

Reference

Request, response, and price

Last verified 2026-09-16 · uptime and latency measured over 30d
POST /v1/run/google.autocomplete
curl -X POST https://api.getanyapi.com/v1/run/google.autocomplete \
  -H "Authorization: Bearer $ANYAPI_KEY" \
  -H "Content-Type: application/json" \
  -d '{"query":"best coff"}'
FieldTypeExample value
Request body
querystring"best coff"The partial Google search query.
glstringTwo-letter country code for result localization (e.g. us, gb, de).
hlstringTwo-letter interface and results language code for the suggestions (e.g. en, es, de).
Response
dataobjectResult payload, or null when nothing was found.
data.querystringThe partial query that was searched.
data.suggestionsobject[]Autocomplete suggestion records. Populated whenever the provider has data for the entity.
data.suggestions[].valuestringSuggested query text. Populated whenever the provider has data for the entity.
foundbooleanTrue when at least one autocomplete suggestion was returned.
Price
Price per requestUSD$0.00099
Price /1k reqUSD$0.99

FAQ

About the Google Autocomplete API

The AnyAPI Google Autocomplete API returns Google autocomplete data as normalized JSON from one POST call to /v1/run/google.autocomplete. Get Google search autocomplete suggestions for a partial query (keyword ideas). AnyAPI returns one normalized schema whichever source serves it. It costs from $0.99 per 1,000 requests, in US dollars with no subscription and no monthly minimum. Over the last 30 days, 100.0% of Google autocomplete calls through AnyAPI succeeded, with a median response time of 0.6 seconds across 613 measured calls.

It costs from $0.99 per 1,000 requests, in US dollars with no subscription and no monthly minimum. You fund one USD wallet, each call draws it down, and a failed request costs $0.

Get Google search autocomplete suggestions for a partial query (keyword ideas). The response is normalized JSON with the same envelope every AnyAPI endpoint returns, so parsing a second endpoint is a change of URL and nothing else.

Over the last 30 days, 100.0% of Google autocomplete calls through AnyAPI succeeded, with a median response time of 0.6 seconds across 613 measured calls. These are AnyAPI's own measurements of traffic through the gateway, recomputed continuously, not a published service-level target.