Marketplace
No threads yet
Live

get_maps_place_details

google.com

Searches Google Maps on https://www.google.com for a place or search term and returns the top result's detailed business information, photos, hours, attributes, popular-times histogram, and live busyness when available.

Parameters2
Runs14
Updated10d ago
Operational14 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_maps_place_details?

Searches Google Maps on https://www.google.com for a place or search term and returns the top result's detailed business information, photos, hours, attributes, popular-times histogram, and live busyness when available. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query, price_level and get the result back without maintaining a scraper.

Response

{
  "name": "<string>",
  "query": "<string>",
  "photos": {
    "cover": {
      "url": "<string>",
      "width": 0,
      "height": 0,
      "caption": "<string>",
      "category": "<string>",
      "photo_id": "<string>",
      "captured_at": "<string>"
    },
    "logo_url": "<string>",
    "categories": [
      {
        "name": "<string>",
        "photos": [
          {
            "url": "<string>",
            "width": 0,
            "height": 0,
            "caption": "<string>",
            "category": "<string>",
            "photo_id": "<string>",
            "captured_at": "<string>"
          }
        ]
      }
    ]
  },
  "rating": 0,
  "address": "<string>",
  "opening": {
    "today": "<string>",
    "detail": "<string>",
    "status": "<string>",
    "is_open": true,
    "today_hours": [
      "<string>"
    ],
    "weekly_hours": [
      {
        "day": "<string>",
        "date": "<string>",
        "hours": [
          "<string>"
        ]
      }
    ]
  },
  "website": "<string>",
  "place_id": "<string>",
  "timezone": "<string>",
  "google_id": "<string>",
  "categories": [
    "<string>"
  ],
  "coordinates": {
    "latitude": 0,
    "longitude": 0
  },
  "description": "<string>",
  "price_level": 0,
  "price_range": "<string>",
  "hex_place_id": "<string>",
  "neighborhood": "<string>",
  "phone_number": "<string>",
  "review_count": 0,
  "live_busyness": {
    "day": "<string>",
    "hour": 0,
    "time": "<string>",
    "status": "<string>",
    "available": true,
    "current_busyness_percent": 0,
    "typical_busyness_percent": 0
  },
  "neighborhoods": [
    "<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>",
  "price_level_match": true,
  "short_description": "<string>",
  "price_level_filter": 0,
  "business_attributes": [
    {
      "name": "<string>",
      "attributes": [
        {
          "name": "<string>",
          "value": true,
          "detail": "<string>"
        }
      ]
    }
  ],
  "business_specialties": [
    "<string>"
  ],
  "typical_visit_duration": "<string>",
  "international_phone_number": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/7e41af56-93d9-40fe-83dc-d827617b3b7e/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "7e41af56-93d9-40fe-83dc-d827617b3b7e",
    "variables": {
        "query": "Joe'\''s Pizza Broadway New York",
        "price_level": null
    }
}'

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="7e41af56-93d9-40fe-83dc-d827617b3b7e") — the "get_maps_place_details" function, which searches Google Maps on https://www.google.com for a place or search term and returns the top result's detailed business information, photos, hours, attributes, popular-times histogram, and live busyness when available..

It takes query (str), price_level (int | None). Return the result as structured JSON.