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/vehicles

List current vehicle locations

Returns the latest known position of every vehicle your account can access. Results are paginated.

Parameters

NameInTypeRequired
Authorization
Bearer token issued to your account, e.g. `Bearer {token}`.
headerstringYes
page
Zero-based page index. Defaults to 0.
queryintegerNo
limit
Number of records per page. Defaults to 10.
queryintegerNo

Request

cURL
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
}
}
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

NameInTypeRequired
Authorization
Bearer token issued to your account, e.g. `Bearer {token}`.
headerstringYes
unit_no
Unit number of the target vehicle, e.g. `204`.
pathstringYes

Request

cURL
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"
}
}
]
}