빠른 시작
한 번의 요청으로 완전히 파싱된 Google 검색 응답을 받아보세요. HTML 파싱도, 프록시 로테이션도, 재시도 로직 구축도 필요 없습니다.
-
API 키 발급받기
shifter.io/panel에 로그인한 후 SERP API → API Keys를 여세요. 활성화된 키를 복사합니다.
-
Google 검색 실행하기
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)); -
결과 지역화하기
location=을 추가하면 해당 지역 사용자에게 보이는 결과를 확인할 수 있습니다. 정밀한 지역 타겟팅에 대해서는 Locations API를 참조하세요.Terminal window curl "https://serp.shifter.io/v1?engine=google&api_key=YOUR_API_KEY&q=pizza&location=Chicago%2C+Illinois" -
엔진 전환하기
engine매개변수를 변경하여 지원되는 모든 서비스를 대상으로 지정할 수 있습니다.google_maps,google_jobs,bing,yandex. 전체 목록은 Google, Bing, Yandex, Amazon에서 확인하세요.