OPEN API
  1. Vehicle Locations
OPEN API
  • Organization Info
    • Get information about your organization
      GET
  • Drivers
    • List all drivers
      GET
    • Retrieve a driver
      GET
  • Hours Of Service
    • Get HOS clocks
      GET
    • Get all driver HOS daily logs
      GET
    • Get HOS logs
      GET
  • Vehicles
    • List all vehicles
      GET
    • Retrieve a vehicle
      GET
  • Vehicle Locations
    • Historical Vehicle Locations
      GET
    • Latest Vehicle Locations
      GET
  • Trips
    • Get Vehicle Trips
      GET
  • Vehicle Stats
    • Vehicle Stats snapshot
      GET
  • Maintenance
    • Get all DVIRs
      GET
  • IFTA
    • Get IFTA jurisdiction reports
      GET
  • Webhook
    • Sample Webhook request for specific trigger
      GET
    • Subscribe to specific immediately events
      POST
    • Available list of Triggers
      GET
    • Unsubscribe form events
      POST
  1. Vehicle Locations

Latest Vehicle Locations

GET
https://api.firsteld.com/openapi/vehicles/locations/
Latest Vehicle Locations
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.firsteld.com/openapi/vehicles/locations/'
Response Response Example
{
    "count": 10,
    "page_size": 123,
    "previous": null,
    "current": 1,
    "next": 2,
    "results": [
        {
            "driver": "string",
            "vehicle": "string",
            "locatedAt": "2019-08-24T14:15:22Z",
            "location": {
                "latitude": 0,
                "longitude": 0
            },
            "address": "string",
            "heading": 0,
            "speed": 0,
            "odometer": 0,
            "odometer_with_offset": 0,
            "odometer_override": 0
        }
    ]
}

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Query Params

Responses

🟢200OK
application/json
Body

Modified at 2025-07-15 13:07:57
Previous
Historical Vehicle Locations
Next
Get Vehicle Trips
Built with