# Verify Restaurant Opening Hours for Food Delivery Apps

**Use case:** 

Ensure accurate operating hours for popular restaurants across the USA to optimize delivery service availability. This task helps food delivery platforms mainta

## Input

```json
{
  "placeUrl": "https://www.google.com/maps/place/Starbucks+Reserve+Roastery+New+York/@40.7416,-74.0053,17z/data=!3m1!4b1!4m6!3m5!1s0x89c259bf6dd90021:0x645ce21be1b31735!8m2!3d40.7416!4d-74.0053!16s%2Fg%2F11j7w8j09h?hl=en",
  "placeUrls": [
    "https://www.google.com/maps/place/The+Cheesecake+Factory/@34.0189913,-118.4907085,17z/data=!3m1!4b1!4m6!3m5!1s0x80c2bb36d07e9973:0x4d53ed42a663953!8m2!3d34.0189913!4d-118.4881336!16s%2Fg%2F1tdy_78l",
    "https://www.google.com/maps/place/Shake+Shack/@40.7410034,-73.9897184,17z/data=!3m1!4b1!4m6!3m5!1s0x89c259837a7605d1:0x3922d506992d9d14!8m2!3d40.7410034!4d-73.9871435!16s%2Fg%2F1tdy_48t",
    "https://www.google.com/maps/place/Panda+Express/@33.911894,-118.069145,17z/data=!3m1!4b1!4m6!3m5!1s0x80c2d33451e08db9:0xa7d805090f47385!8m2!3d33.911894!4d-118.0665701!16s%2Fg%2F1thz_25t"
  ],
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "businessName": {
    "label": "Business name"
  },
  "placeId": {
    "label": "Place id"
  },
  "placeUrl": {
    "label": "Place url"
  },
  "location": {
    "label": "Location"
  },
  "isOpenNow": {
    "label": "Is open now"
  },
  "temporarilyClosed": {
    "label": "Temporarily closed"
  },
  "is24Hours": {
    "label": "Is24hours"
  },
  "openingHoursText": {
    "label": "Opening hours text"
  },
  "hoursStatus": {
    "label": "Hours status"
  },
  "hours": {
    "label": "Hours"
  },
  "weeklyPattern": {
    "label": "Weekly pattern"
  },
  "totalHoursPerWeek": {
    "label": "Total hours per week"
  },
  "holidayHours": {
    "label": "Holiday hours"
  },
  "specialHours": {
    "label": "Special hours"
  },
  "timezone": {
    "label": "Timezone"
  },
  "currentLocalTime": {
    "label": "Current local time"
  },
  "nextOpenTime": {
    "label": "Next open time"
  },
  "nextCloseTime": {
    "label": "Next close time"
  },
  "timeUntilNextChange": {
    "label": "Time until next change"
  },
  "scrapedAt": {
    "label": "Scraped at"
  }
}
```

## About this Actor

This example demonstrates how to use [Google Maps Business Hours Scraper](https://apify.com/crawlerbros/google-maps-business-hours) with a specific input configuration. Visit the [Actor detail page](https://apify.com/crawlerbros/google-maps-business-hours) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
This Task's input is already configured above — use it as-is rather than inventing a new one.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/crawlerbros/google-maps-business-hours.md

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).
