Apple Maps research
Search Apple Maps and its public place/guide surfaces for local intelligence, directions, transit, and travel-time estimates as normalized JSON from the Crawlora API.
When to use this skill
- Find businesses or places near a coordinate, address, or category.
- Autocomplete a place search or reverse-geocode coordinates.
- Get driving, walking, or cycling directions and ETA estimates.
- Browse Apple Guides and the places inside them.
- Pull a place's details or photos.
Setup
- Get a Crawlora API key at crawlora.net.
- Set
CRAWLORA_API_KEYin the environment before running the helper. - The helper reads
CRAWLORA_API_KEYfrom the environment and sends requests tohttps://api.crawlora.net/api/v1.
How it works
- Resolve a partial query with
/apple-maps/autocomplete, or coordinates with/apple-maps/reverse-geocode. - Search
/apple-maps/searchor/apple-maps/category-search; use/apple-maps/placeand/apple-maps/place/photosfor detail. - Use
/apple-maps/directions,/apple-maps/eta, or/apple-maps/transit-departuresfor travel planning. - Discover and inspect curated guides with
/apple-maps/guidesand the/apple-maps/guides/*endpoints.
Full endpoint list: reference/endpoints.md.
Example
scripts/crawlora.sh /apple-maps/search query="coffee" latitude=37.7749 longitude=-122.4194 | jq '.'
scripts/crawlora.sh /apple-maps/directions origin_latitude=37.7749 origin_longitude=-122.4194 destination_latitude=37.7849 destination_longitude=-122.4094 mode=driving | jq '.'