How to extract datetime of a location when it was added to the google maps?

Viewed 47

I am trying to extract datetime of a location pin when it was added in Google maps. For e.g. if I search McDonalds in an area then it should give datetime for all McDonald locations in that area with their datetime. Is there a way to pull up that data.

P.S. This question may not belong here so apologies for that. I have tried other forums but I couldn't find any relevant information.

1 Answers

I hope you are using google maps API for development, so if you want to get place details then you can use Place API.

https://developers.google.com/maps/documentation/places/web-service

Nearby Search and Text Search allow additional parameters to filter results, (e.g. minprice, maxprice, opennow, and type).

PlaceOpeningHours is parameter from which you can get time for particular place

https://developers.google.com/maps/documentation/places/web-service/search-find-place#PlaceOpeningHours

I hope this answer is helpful to you.

Related