Trace Route Taken

Product Used: Route Reconstruction API


Using NextBillion.ai’s Route Reconstruction API you can trace the actual route taken by your truck. The Route reconstruction API will take into account a list of locations tracked while the truck was on trip and returns the total distance of the trip along with the geometry of the route taken.

This information is quite helpful in tackling business cases needing to track the miles covered for fuel reimbursement or quality assessments post-service.

Following is a sample request with

  1. list of tracked location coordinates provided as input for waypoints.

  2. mode option set to truck

  3. geometry parameter is set to polyline6 to indicate the format in which the path geometry is needed.

Route Reconstruction API request:

1
curl --location 'https://api.nextbillion.io/route-reconstruction?key=<your_api_key>' \
2
--header 'Content-Type: application/json' \
3
--data '{
4
"waypoints":"34.04932289,-118.25573833|34.04711381,-118.24976846|34.04153727,-118.2310818|34.03881998,-118.20756901",
5
"mode":"truck",
6
"geometry": "polyline6"
7
}'

Route Reconstruction API response:

1
{
2
"status": "Ok",
3
"route": {
4
"geometry": "wyd}_A~_vp`FnKrIbV_b@rSc`@jCgEzO{YfEkHzJwQvBgEzTc`@~H_NnKcQrIoPrIgOvGwLbLsSjHkMnKkR~CoFnAkCnKwQ_NsN_IsI{EgEwVcV{E{EcGoFsIrNvLfJ~CjCjHbGz@nAf@z@?nASbB{@bBg@f@oA?oAg@kRwQgE{E??{@oARoAjCgErIsN{O{Og^_]_XkWcLgJsSoPvB_DbBwBbQ{TvG_IvG_I~C_DzEwGnAcBnAwBnAwBf@oAz@oAvBoFvBgEvQce@nAkCbG_NvB{EvBwG~CcLbBsIjM{h@vBoKnFoPbGwL~Rw`@j\\sl@j\\wo@r]on@fJkRrD_Iz@kCnA_DvLkp@z@_InAwGR_DR_DRgE?gESoAg@{Jg@kHwB{^ScBSwBg@gJg@wL_Dgh@SwBg@wL?sDRcG?cBR_Df@sDRwBvB_IzE{JbLsSzJ_S~R_b@~a@{w@nPs]bBsDbBgEz@wBf@kCz@kCf@sDz@gEz@gERsDRoFRwG?{@g@cwAS_XSgY?wB?kC?_D?g@SsX?wBSgYS{Jg@sDg@gEoA{JoA{Eg@sDoUchAgE{TcLkk@cGk\\sIka@cGoZg@kCg@oAoAwGSwBSkCScGg@g^g@g^g@sNSkHSoK?kHSsN?gOSkC?_DSgES{TSgOg@wLSwQ{@we@S_S?cGSwB?oA?_NRgE?kCz@oFRoAnAoFR{@f@cBR{@f@cBnAgEbBoFrD{JjCsIjHsS~Rwj@jCsIjCkH~CgJvBcGfOod@nPwe@~HcVzE_NzE_NjCsIf@oAjC_IrDgJjCgJbGwQzE_Nz@wBbGoPnAsDrDoKfE_NbGcQv[c~@jH{TnUsq@",
5
"distance": 5277.3
6
}
7
}

On successfully submitting the above request the service responds with total distance covered by the truck along with the geometry of the route.

Visit Route Reconstruction API documentation to know more about the available features.

© 2025 NextBillion.ai all rights reserved.