콘텐츠로 이동
로그인 가입하기

Google Maps API

Google Maps에서 비즈니스 및 위치 데이터를 추출합니다. engine=google_maps를 설정하고, 키워드 목록 검색에는 type=search를, 단일 장소의 전체 프로필을 조회하려면 type=place를 사용하세요.

GET https://serp.shifter.io/v1?engine=google_maps&api_key=YOUR_API_KEY
ParameterTypeRequiredDescription
api_keystringyes사용자의 SERP API 키
enginestringyes반드시 google_maps여야 함
qstringyes검색할 키워드
typestringyessearch 또는 place
datastringnotype=place일 때 필수. 형식: !4m5!3m4!1s + data_id + !8m2!3d + latitude + !4d + longitude
devicestringnodesktop, mobile, 또는 tablet
google_domainstringno사용할 Google 도메인
hlstringno인터페이스 언어 코드
llstringnoGPS 좌표, 형식 @latitude,longitude,zoom
Terminal window
curl "https://serp.shifter.io/v1?engine=google_maps&api_key=YOUR_API_KEY&q=pizza&type=search"
{
"search_parameters": {
"engine": "google_maps",
"q": "pizza",
"type": "search",
"google_domain": "google.com"
},
"places_results": [
{
"position": 1,
"title": "Joe's Pizza",
"place_id": "ChIJ...",
"data_id": "0x89c25994a1b6e4a3:0x...",
"gps_coordinates": { "latitude": 40.730, "longitude": -73.998 },
"rating": 4.5,
"reviews": 2431,
"type": "Pizza restaurant",
"address": "7 Carmine St, New York, NY 10014",
"phone": "(212) 366-1182",
"website": "https://www.joespizzanyc.com/"
}
]
}