Vehicle Location API
Access real-time vehicle positions from the Side To Side ELD platform. All requests require a Bearer token in the Authorization header.
GET
/logger/connections/access/vehiclesList current vehicle locations
Returns the latest known position of every vehicle your account can access. Results are paginated.
Parameters
| Name | In | Type | Required |
|---|---|---|---|
Authorization Bearer token issued to your account, e.g. `Bearer {token}`. | header | string | Yes |
page Zero-based page index. Defaults to 0. | query | integer | No |
limit Number of records per page. Defaults to 10. | query | integer | No |
Request
curl -X GET \ 'https://api.stseld.net/logger/connections/access/vehicles?page=0&limit=10' \ -H 'accept: */*' \ -H 'Authorization: Bearer {token}'Response
{ "result": { "code": "success", "message": "success" }, "carrier_info": { "carrier_usdot_no": "4346237", "carrier_name": "Yad Express LLC" }, "records": [ { "truck_info": { "truck_id": 8080, "brand": "Freightliner", "type": "Cascadia", "truck_vin_number": "3C4PDDBG9CT396506", "unit_no": "535" }, "driver_info": { "driver_id": 324, "driver_fullname": "Dave Doe" }, "position": { "truck_coordinates": { "truck_lat": 37.9796, "truck_lng": -85.6952 }, "adjacent_coordinates": { "adjacent_lat": 37.976745, "adjacent_lng": -85.697055 }, "timestamp": "2026-02-06T12:13:44", "radius": 0.54, "heading": "NE", "city": "Bullitt County", "state": "KY" } }, { "truck_info": { "truck_id": 909, "brand": "Freightliner", "type": "Cascadia", "truck_vin_number": "1XP5DB9X9TN407486", "unit_no": "001" }, "driver_info": { "driver_id": 845, "driver_fullname": "Micheal Adams" }, "position": { "truck_coordinates": { "truck_lat": 37.9796, "truck_lng": -85.6952 }, "adjacent_coordinates": { "adjacent_lat": 37.976745, "adjacent_lng": -85.697055 }, "timestamp": "2026-02-06T12:13:44", "radius": 0.54, "heading": "NE", "city": "Bullitt County", "state": "KY" } } ], "pagination": { "total_count": 2, "previous": null, "next": 1, "active": 0 }}{ "result": { "code": "error", "message": "Unauthorized. Invalid or missing Bearer token." }}{ "result": { "code": "error", "message": "Forbidden. You do not have access to this resource." }}GET
/logger/connections/access/vehicles/{unit_no}Get vehicle location by unit number
Returns the latest known position of a single vehicle identified by its unit number.
Parameters
| Name | In | Type | Required |
|---|---|---|---|
Authorization Bearer token issued to your account, e.g. `Bearer {token}`. | header | string | Yes |
unit_no Unit number of the target vehicle, e.g. `204`. | path | string | Yes |
Request
curl -X GET \ 'https://api.stseld.net/logger/connections/access/vehicles/{unit_no}' \ -H 'accept: */*' \ -H 'Authorization: Bearer {token}'Response
{ "result": { "code": "success", "message": "success" }, "carrier_info": { "carrier_usdot_no": "4346237", "carrier_name": "Yad Express LLC" }, "records": [ { "truck_info": { "truck_id": 8080, "brand": "Freightliner", "type": "Cascadia", "truck_vin_number": "3C4PDDBG9CT396506", "unit_no": "535" }, "driver_info": { "driver_id": 324, "driver_fullname": "Dave Doe" }, "position": { "truck_coordinates": { "truck_lat": 37.9796, "truck_lng": -85.6952 }, "adjacent_coordinates": { "adjacent_lat": 37.976745, "adjacent_lng": -85.697055 }, "timestamp": "2026-02-06T12:13:44", "radius": 0.54, "heading": "NE", "city": "Bullitt County", "state": "KY" } } ]}{ "result": { "code": "error", "message": "Unauthorized. Invalid or missing Bearer token." }}{ "result": { "code": "error", "message": "Forbidden. You do not have access to this resource." }}