Tracking by vin number API
This endpoint provides access to real-time tracking information for vehicles by VIN number in our system. By utilizing this endpoint, you can retrieve data about the location, unit number, VIN, and other relevant information of the tracked vehicle.
Endpoint:
GET https://read.evoeld.com/api/v2/unit-by-vin/:usdot/:vin
Auth Header:
Key: x-api-key
Value: <api key value>
Key: provider-token
provider-token: <provider token value>
Example:
cURL:
curl --location --request GET 'https://read.evoeld.com/api/v2/unit-by-vin/:usdot/:vin' \--header 'x-api-key:' --header 'provider-token:'
The response to the request will be in the following format below:
Response:
{
"unit": {
"truck_number": "string",
"vin": “string”,
"coordinates": { "lat": 0.0,"lng": 0.0 },
“timestamp”: iso string date
}
}
Test data:
Endpoint: https://read.evoeld.com/api/v2/unit-by-vin/:usdot/:vin
x-api-key: fb257x44154vmw3oa0d9vnhz2n872ra1t7611h9a3ea
provider-token: fz7emfv47jkhqsy7foetg18q9v4s14a1t7611h9a3ea
USDOT: 12121212
VIN: 3AKJHHDR8KSKE7362
cURL:
curl --location --request GET 'https://read.evoeld.com/api/unit-by-vin/12121212/3AKJHHDR8KSKE7362' \--header 'x-api-key: fb257x44154vmw3oa0d9vnhz2n872ra1t7611h9a3ea' --header 'provider-token:fz7emfv47jkhqsy7foetg18q9v4s14a1t7611h9a3ea'