Home > Enterprise >  Is there an API which can tell Google Maps that my store is open or closed?
Is there an API which can tell Google Maps that my store is open or closed?

Time:12-09

We are looking at specific Google Map APIs which can help my android app publish whether the store is open or closed on a click on my app.

Thanks in Advance.

CodePudding user response:

That would be Place Details of Google Maps Places API.

The Place Details Response returns the following objects which could help on your implementation:

  • Place - This one have business_status field which "indicates the operational status of the place, if it is a business. If no data exists, business_status is not returned. The allowed values include: OPERATIONAL, CLOSED_TEMPORARILY, and CLOSED_PERMANENTLY."
    ref here

    Here's also a youtube link that talks about this field: https://www.youtube.com/watch?v=tSUHI2W9VVg

For the following ones, I just included hyperlinks to the documentation for more details about their fields:

I would still recommend that you read through the documentation to learn more about this. Hope this helps!

  • Related