50,000 free calls a month, card-free. Get an API key →

Booking-to-door

A destination link that opens as a route.

/goturns a booking confirmation into the last leg of the journey: an agent books the table, the ticket or the viewing, then hands over a link that opens as a live route — in the browser or in the visitor's own maps app.

This link is missing its destination — it needs at least lat and lng.

for agents · composing a /go link
# Compose a /go link (works unsigned)
https://mapmap.ai/go?name=Kings%20Cross&lat=51.5309&lng=-0.1233&mode=walk

# Sign it for the "verified destination" badge (tamper-evidence)
curl -fsS -X POST "https://mapmap.ai/api/go/sign" \
  -H "Content-Type: application/json" \
  -d '{"name": "Kings Cross", "lat": 51.5309, "lng": -0.1233, "mode": "walk"}'
# → { "url": "https://mapmap.ai/go?lat=…&sig=…", "sig": "…" }

Params: lat, lng (required), name, mode (drive · truck · walk · cycle · scooter), from ("lat,lng"), sig (from /api/go/sign).