Google Maps research
Resolve places from a query, then compare their returned details with source links. This skill contains only the four live Google Maps endpoints.
Setup and requests
Set CRAWLORA_API_KEY to your Crawlora API key from crawlora.net.
Run the bundled scripts/crawlora.sh from this skill's directory (or use its
absolute path). It sends x-api-key to https://api.crawlora.net/api/v1 and
prints the JSON response. Keep the key in the environment.
Read reference/endpoints.md for methods and parameters.
Maps search uses POST with flat fields: keyword, language, and country
are all required. The catalog's mapSearchOption is a parameter label, not a
JSON wrapper. Include the city or neighborhood in keyword when relevant.
scripts/crawlora.sh -X POST /google/map/search \
'{"keyword":"coffee cambridge massachusetts","language":"en","country":"us"}'
Workflow
- Search using the user's geography and category. Use returned
place_idvalues; do not fabricate IDs from names or addresses. - Fetch
/google/map/place/{place_id}for candidates needing current detail. Match name and address before combining records; branches are separate places. - Fetch
/google/map/place/{place_id}/reviewswhen the question needs customer feedback, or/photoswhen it needs the place gallery. Read actual images before making visual claims. Detail alone suffices for many questions. - Report the requested comparison with place name, address, source URL, rating and review count together, and retrieval time. Leave unavailable phone, website, hours, or other fields unknown rather than filling them in.
Space live Google Maps requests at least one second apart. The helper does not
throttle automatically. On 429, back off; on a transient 5xx, retry once.
Stop on 401/403 and report the access problem. Check the JSON envelope's
code as well as HTTP success before interpreting data.
Interpretation
rating: nullmeans no aggregate rating is available, not zero stars.- Reviews are the place page's first sample, typically about eight relevant
reviews. There is no review cursor.
limit=0means all captured reviews, not the entire review archive. Never claim a complete or representative survey. - Review text can be empty for photo-only reviews. Preserve
sourcebecause reviews may be syndicated. Usepublished_atfor dates when present;relative_timeis display text. Review photos and place-gallery photos differ. - Search results are a snapshot, not an exhaustive census of a geographic area. For bulk prospecting, indexed business search may be a better starting point.
Example deliverable
For “compare three cafes near Cambridge for a client meeting,” identify three places, refresh details, and inspect review samples only for relevant evidence. Return a small table with address, rating, review count, meeting-related evidence, source URL, and unknowns. A review mentioning quiet seating is an attributed observation, not a guarantee about the current atmosphere.