Release notes
November 18, 2025
- Enabled building public transport routes in both synchronous and asynchronous modes.
September 16, 2025
- Enabled building motorcycle routes in a synchronous mode.
February 03, 2025
- Enabled building scooter routes in a synchronous mode.
- Enabled building pedestrian, bicycle, and scooter routes in an asynchronous mode.
- Added the
need_altitudesrequest parameter, which allows you to get information about altitude of a pedestrian or bicycle route when building a route in a synchronous and asynchronous modes.
November 25, 2024
- The
moderequest parameter that indicates routing type is replaced by thetransportparameter.
September 30, 2024
- Added the vehicle_speed_limit request parameter, which allows you to set an additional speed limit when building a route.
August 28, 2023
- Enabled building cargo routes. When building, you can specify additional cargo parameters in truck_params.
May 18, 2023
- Added new
422error code for the /get_dist_matrix request.
November 10, 2022
- Added support for the Protocol Buffers format. To get responses in this format, specify the
response_format=protobufparameter in the query string.
June 30, 2021
- Enabled building bicycle routes (
"mode": "bicycle"). When building a bicycle route, you can exclude new types of roads using the filters parameter: stairways, overpasses, underpasses, and car roads.
March 31, 2021
-
You can now set a list of areas to avoid when building a route. See the Excluding areas section for more info.
-
You can now specify the direction of movement for the start and end point of the route. See the azimuth parameter for more info.
-
Enabled building taxi routes (
"mode": "taxi"). They work exactly like regular car routes, except they additionally include public transport lanes. -
Route points now have an optional distance_direction parameter. You can use it to set the distance from the starting point in meters maintaining the direction of movement. If
distance_directionis set, the response will include an additional fieldreliabilitythat indicates the accuracy of the calculated route. -
Added the
typerequest parameter, which allows you to set a route type (shortest by time or by distance). -
Added the
filtersrequest parameter, which allows you to exclude certain road types from a route. For more details, see Directions API. -
The
start_timerequest parameter is now optional. If start time is not set, the current time is used. -
Removed the
modefield from the response.