Google Autocomplete API
Google Autocomplete API Integration Examples
https://serp.shifter.io/v1?engine=google_autocomplete&api_key=<YOUR_API_KEY>&q=freecodReady to Use Google Autocomplete Scraping Scripts:
curl --request GET --url "https://sserp.shifter.io/v1?engine=google_autocomplete&api_key=YOUR_API_KEY&q=freecod"const http = require("https");
const options = {
"method": "GET",
"hostname": "serp.shifter.io",
"port": null,
"path": "/v1?engine=google_autocomplete&api_key=YOUR_API_KEY&q=freecod",
"headers": {}
};
const req = http.request(options, function (res) {
const chunks = [];
res.on("data", function (chunk) {
chunks.push(chunk);
});
res.on("end", function () {
const body = Buffer.concat(chunks);
console.log(body.toString());
});
});
req.end();Google Autocomplete Parameters
#1: Query Parameter
Parameter
Type
Description
https://serp.shifter.io/v1?engine=google_autocomplete&api_key=<YOUR_API_KEY>&q=<KEYWORD>Last updated
Was this helpful?