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
Try it
Make your first request
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 30dPOST /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"}'| Field | Type | Example value |
|---|---|---|
| Request body | ||
| query | string | "best coff"The partial Google search query. |
| gl | string | Two-letter country code for result localization (e.g. us, gb, de). |
| hl | string | Two-letter interface and results language code for the suggestions (e.g. en, es, de). |
| Response | ||
| data | object | Result payload, or null when nothing was found. |
| data.query | string | The partial query that was searched. |
| data.suggestions | object[] | Autocomplete suggestion records. Populated whenever the provider has data for the entity. |
| data.suggestions[].value | string | Suggested query text. Populated whenever the provider has data for the entity. |
| found | boolean | True when at least one autocomplete suggestion was returned. |
| Price | ||
| Price per request | USD | $0.00099 |
| Price /1k req | USD | $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.