Vehicles
GET
/api/vin-numbers/:usdotVehicle VINs
Retrieves the list of VINs associated with a USDOT number.
Returns an array of VIN strings.
Parameters
usdot
string · required · path
The USDOT number for which VINs are being requested.
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/vin-numbers/:usdot' \
--header 'x-api-key: ${key}' \
--header 'provider-token: ${token}'Example response
JSON
[
"1HGCM82633A004352",
"1FAFP4041WF287392",
...
]