Routing

Click two points on the map or enter coordinates. First click sets origin, second sets destination.

Code Snippets
curl -X POST "https://api.plaza.fyi/api/v1/route" \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
  "mode": "auto",
  "origin": {
    "lng": "",
    "lat": ""
  },
  "destination": {
    "lng": "",
    "lat": ""
  }
}'