Google Search
google
googleParameter
Type
Required
Description
curl -X POST 'https://scraping.production.goproxies.com/api/v1/scrapes' \
-H 'X-Api-Key: <your-api-key>' \
-H 'Content-Type: application/json' \
-d '{
"google": {
"query": "best coffee shops",
"country": "US",
"city": "Seattle",
"state": "WA",
"parse": true
}
}'const response = await fetch("https://scraping.production.goproxies.com/api/v1/scrapes", {
method: "POST",
headers: {
"X-Api-Key": "<your-api-key>",
"Content-Type": "application/json",
},
body: JSON.stringify({
google: {
query: "best coffee shops",
country: "US",
city: "Seattle",
state: "WA",
parse: true,
},
}),
});
const data = await response.json();
console.log(data);Last updated
Was this helpful?

