← All skills

Maps

Your agent can't geocode or route; this turns addresses into coordinates, finds nearby places, and gives directions.

Maps & Weather

Looks up locations, converts addresses to coordinates and back, finds places nearby, and calculates routes with distance and travel time. Covers the core mapping operations without requiring a map display: geocoding, reverse geocoding, nearby-place search, and driving, walking, or cycling directions between any points.

Use when

You need to resolve a location, label a coordinate, find places near a point, or get travel distance and time.

Not for

Live traffic or transit schedules, map images or embeddable maps, device GPS or tracking, postal address validation, or bulk geocoding of large lists.

What you can do

Each is a sub-skill of Maps; the router picks the right one for your request.

What you get back

information

Returns structured location data (coordinates, addresses, place listings, or a route with distance and time), credited to OpenStreetMap contributors. Not a map image or an embeddable map.

Run it

Skills run through one gateway with your Faro token. Hand it an intent in plain language; Faro routes to the right sub-skill, runs it, and bills per call.

curl -X POST "https://skill.askfaro.com/skills/maps/run" \
  -H "Authorization: Bearer $FARO_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"intent":{"prompt":"What are the coordinates of 221B Baker Street, London?"}}'

Example requests

  • What are the coordinates of 221B Baker Street, London?
  • What address is at 48.8584, 2.2945?
  • Find coffee shops near the Eiffel Tower
  • How long does it take to drive from Paris to Lyon?