이 문서에서는 Places Insights API에 대한 기본 요청을 수행하는 방법을 설명합니다. 일치하는 장소의 수가 포함된 응답을 이해할 수 있습니다. 가 샘플이 참고용으로 제공됩니다
장소 통계를 사용하려면 computeInsights
에 HTTP POST 요청을 전송하세요.
엔드포인트를 다음과 같이 변경합니다.
https://areainsights.googleapis.com/v1:computeInsights
JSON 본문에 리전 및 유형 매개변수를 제공하여 요청을 미세 조정합니다. 이 예는 샌프란시스코에 있는 식당 수를 찾기 위한 요청을 보여줍니다. 운영 중이며 적당한 가격의 별점 4~5개를 받은 업체
curl --location 'https://areainsights.googleapis.com/v1:computeInsights' \ --header 'X-Goog-Api-Key: API_KEY' \ --header 'Content-Type: application/json' \ --data '{ "insights":[ "INSIGHT_COUNT" ], "filter":{ "location_filter":{ "region":{ "place":"places/ChIJIQBpAG2ahYAR_6128GcTUEo" } }, "type_filter":{ "included_types":[ "restaurant" ] }, "operating_status":[ "OPERATING_STATUS_OPERATIONAL" ], "price_levels":[ "PRICE_LEVEL_INEXPENSIVE" ], "rating_filter":{ "min_rating":4.0, "max_rating":5.0 } } }'
컴퓨팅 통계 응답
위 예시 요청의 다음 응답은 음식점 목록을 확인할 수 있습니다.
{ "count": "846" }