Marketplace
No threads yet
Live

get_place_popular_times

google.com

Retrieves popular-times histograms and live busyness status for a Google Maps place URL from https://www.google.com. Returns the place name/address plus hourly busyness percentages and status descriptions for each day when available.

Parameters2
Runs8
Updated8d ago
Operational8 runs · 100% succeeded
30 days agotoday

Playground

Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.

What is get_place_popular_times?

Retrieves popular-times histograms and live busyness status for a Google Maps place URL from https://www.google.com. Returns the place name/address plus hourly busyness percentages and status descriptions for each day when available. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass place_url, timeout_seconds and get the result back without maintaining a scraper.

Response

{
  "place_name": "<string>",
  "hex_place_id": "<string>",
  "live_busyness": {
    "day": "<string>",
    "hour": 0,
    "time": "<string>",
    "status": "<string>",
    "available": true,
    "current_busyness_percent": 0,
    "typical_busyness_percent": 0
  },
  "place_address": "<string>",
  "popular_times": [
    {
      "day": "<string>",
      "hours": [
        {
          "hour": 0,
          "time": "<string>",
          "status": "<string>",
          "typical_wait": "<string>",
          "typical_busyness_percent": 0
        }
      ],
      "day_number": 0,
      "peak_wait_summary": "<string>"
    }
  ],
  "google_maps_url": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/15c43bd6-36ab-45b1-b0a3-465412a4688b/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "15c43bd6-36ab-45b1-b0a3-465412a4688b",
    "variables": {
        "place_url": "DEFAULT_PLACE_URL",
        "timeout_seconds": 25
    }
}'

Ask an agent

Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.

prompt
Use the Anything API MCP server (https://anything.notte.cc/mcp).

Call run(function_id="15c43bd6-36ab-45b1-b0a3-465412a4688b") — the "get_place_popular_times" function, which retrieves popular-times histograms and live busyness status for a Google Maps place URL from https://www.google.com. Returns the place name/address plus hourly busyness percentages and status descriptions for each day when available..

It takes place_url (str), timeout_seconds (int). Return the result as structured JSON.