Planisfy
Api

Isochrone API

Generate Valhalla-backed travel-time or travel-distance contours from a single coordinate.

Isochrone API

Isochrones proxy to Valhalla's isochrone action.

Route

MethodRouteDescription
GET/isochrone/v1/{profile}/{lon,lat}Reachability contour from one coordinate.

Query parameters

ParameterNotes
contours_minutesComma-separated contour times. Each value must be 1..240.
contours_metersComma-separated contour distances; converted to kilometers for Valhalla.
polygonsDefaults to true; pass false for non-polygon output.

At most four contours are allowed. If no contour is provided, the API requests a 15 minute contour.

curl "https://api.example.com/isochrone/v1/walking/9.1829,48.7758?contours_minutes=10,20&polygons=true" \
  -H "X-API-Key: pk_your_key_here"

Auth, caching, and errors

Requests require API key or session auth and a reachable Valhalla service. Successful responses cache for five minutes. Unknown profiles, invalid coordinates, and out-of-range contours return 400 BAD_REQUEST.

On this page