datasets_google_map_nearby
Search stored Google Maps businesses near a location by latitude, longitude, and radius. Filter by category, minimum rating, and review count to find relevant results.
Instructions
Search nearby stored Google Maps businesses. Searches stored Google Maps businesses near a coordinate in dataset id enum value google-map-businesses. category is a Google Maps type token in lower-case snake_case (e.g. dentist, bus_stop, atm), both as the category filter and in each result's category field. A rating of 0 means no aggregate rating is available for that business (not a literal zero-star score); read it together with review_count, and note that min_rating above 0 excludes unrated businesses.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| lat | Yes | Latitude | |
| lon | Yes | Longitude | |
| page | No | Page number, defaults to 1 | |
| category | No | Exact category filter: a Google Maps type token in lower-case snake_case (e.g. dentist, bus_stop), max 128 characters | |
| radius_m | Yes | Radius in meters, max 50000 | |
| page_size | No | Page size, defaults to 20 and maxes at 100; page * page_size must be <= 10000 | |
| min_rating | No | Minimum rating, 0 through 5. Businesses with no aggregate Google rating are returned with rating null, so any min_rating above 0 excludes them. | |
| min_review_count | No | Minimum review count |