Onroad ELDDevelopers
Get API key
Carrier
GET/api/carrier/:vin

Carrier by VIN

Retrieves the motor-carrier record — MC number and USDOT number — associated with a specific VIN.

Parameters

vin
string · required · path
The Vehicle Identification Number to look up the carrier for.
x-api-key
string · required · header
Your API key. Generate one under More → API Keys in the dashboard.
provider-token
string · required · header
Your provider token, issued alongside the API key.

Example request

cURL
curl --location --request GET 'https://api.onroadnetworks.com/api/carrier/:vin' \
  --header 'x-api-key: ${key}' \
  --header 'provider-token: ${token}'

Example response

JSON
{
  "mcNumber": "string",
  "usDotNumber": "string"
}