I am doing a request to Google Places Api in R, I am only doing the next request:
library(googleway)
latlon<-c(40.395536 ,-3.709588)
result<-google_places(search_string = "Hospital",
location = latlon,
key = APIkey,
keyword = "Hospital",
language = "es")
It is 1 request but when I look in the Google Places console, it consumes 10 request. Why? What is the problem?