Google Maps Search
Search Google Maps for places and get structured leads: name, address, rating, review count, category, phone, and website. The classic lead-list workflow, one call, no Maps API key.
Workspace
Configure
Inputs stay here while results become exportable artifacts.
Start from an example
Results
Preview, inspect, copy, or export the complete output.
Your result will become an artifact
Run the tool to inspect structured rows, raw JSON, execution details, and downloadable JSON, CSV, and Markdown files.
Overview
Google Maps Search gives agents and sales workflows a practical local-lead primitive. Provide a natural-language place query, such as coffee roasters in Sydney, and the tool renders Google Maps through Better Fetch before returning structured places that are ready for enrichment, CRM import, or follow-up research.
Last validated: Jul 4, 2026
Input
querystringrequiredWhat and where, e.g. "coffee roasters in Sydney"
max_resultsintegerdefault: 10Max places to return
Output
countintegerrequiredNumber of places returned
querystringrequiredThe query as searched
placesobject[]requiredPlaces in result order
Examples
sydney-coffee
{
"query": "coffee roasters in Sydney",
"max_results": 5
}Use cases
FAQ
What fields does Google Maps Search return?
The tool returns place names and, when visible in the rendered results, address, rating, review count, category, phone, website, latitude, and longitude.
Do I need a Google Maps API key?
No. This tool uses Better Fetch's browser engine to render the public Google Maps search page and parse the result cards into structured output.
Use it anywhere
MCP (Claude, ChatGPT, Codex)
# After connecting https://betterfetch.co/api/mcp, ask your AI to:
1. Call search_tools for "Google Maps Search"
2. Call run_tool with:
name: "google_maps_search"
input: {"query":"coffee roasters in Sydney","max_results":5}REST
curl -sS -X POST "https://betterfetch.co/api/tools/google_maps_search/run" \
-H "Authorization: Bearer bf_your_key_here" \
-H "Content-Type: application/json" \
-d '{"input": {"query":"coffee roasters in Sydney","max_results":5}}'Run locally
git clone https://github.com/better-fetch/tools/tree/main/tools/google-maps-search && cd google-maps-search && npm i
BETTER_FETCH_API_KEY=bf_your_key_here npx bf-tool run --input '{"query":"coffee roasters in Sydney","max_results":5}'