Getting route with OSRM

API call for getting the route to destination point using OSRM API.

API actions

API path: /route/osrm.

get

Gets route points via OSRM API.

Parameters

name
description
type

start

Location JSON object. Start of route.

JSON object

end

Location JSON object. End of route.

JSON object

waypoints

Optional. List of transitional points. [{locationA},{locationN}].

array of JSON objects

point_limit

Optional. If specified, the returned route will be simplified to contain this number of points (or less). Min=2.

int

Where location described in data types description section.

Examples

cURL

curl -X POST 'https://api.eu.navixy.com/v2/route/osrm/get' \
    -H 'Content-Type: application/json' \
    -d '{"hash": "22eac1c27af4be7b9d04da2ce1af111b", "start": {34.178868, "lng": -118.599672}, "end": {35.365948, "lng": -108.112104}}'

Response

  • distance - int. Length in meters.

  • time - int. Duration in seconds.

  • list - list of route points. Location objects.

  • key_points - list of points corresponding to start point, waypoints and end point (in that sequence).

    • id - int. index in points list.

    • lat - float. Latitude.

    • lng - float. Longitude.

Errors

  • 215 - External service error.

  • 218 - Malformed external service parameters.

  • 236 - Feature unavailable due to tariff restrictions – if there is at least one tracker without "routing" tariff feature.

Last updated

Was this helpful?