Quickstart
Make a single request and get back a fully parsed Google Search response. No HTML parsing, no proxy rotation, no retry logic to build.
-
Grab your API key
Log in at shifter.io/panel and open SERP API → API Keys. Copy an active key.
-
Run a Google search
Terminal window curl "https://serp.shifter.io/v1?engine=google&api_key=YOUR_API_KEY&q=residential+proxies"import requestsparams = {"engine": "google","api_key": "YOUR_API_KEY","q": "residential proxies",}r = requests.get("https://serp.shifter.io/v1", params=params)print(r.json()["organic_results"][:3])import fetch from 'node-fetch';const url = 'https://serp.shifter.io/v1?' + new URLSearchParams({engine: 'google',api_key: 'YOUR_API_KEY',q: 'residential proxies',});const data = await (await fetch(url)).json();console.log(data.organic_results.slice(0, 3)); -
Localize the results
Add
location=to get what a user in that place would see. For precise geo-targeting, see the Locations API.Terminal window curl "https://serp.shifter.io/v1?engine=google&api_key=YOUR_API_KEY&q=pizza&location=Chicago%2C+Illinois" -
Switch engines
Change the
engineparameter to target any supported surface,google_maps,google_jobs,bing,yandex. Full list on Google, Bing, Yandex, and Amazon.