Vehicle Make and Model
uShip gives shippers the ability to specify a year, make, and model for their vehicle. This is primarily so that a shipment weight can be determined, but the body type of a vehicle is also useful for service providers when planning their quotes.
Use the following endpoint to retrieve available make and model values in the uShip marketplace.
GET https://api.uship.com/v2/lookups/vehicles/carslighttrucks/<year>/<make>/<model>
The examples below demonstrate how to successfully query for our available years, make and models in building your Cars and Light Trucks listing.
Example JSON - Year
https://api.uship.com/v2/lookups/vehicles/carslighttrucks
{
"totalCount": 38,
"items": [ ]
}
Example JSON - Make
https://api.uship.com/v2/lookups/vehicles/carslighttrucks/1999
{
"totalCount": 43,
"items": [ ]
}
Example JSON - Model
https://api.uship.com/v2/lookups/vehicles/carslighttrucks/1999/Acura
{
"totalCount": 6,
"items": [
{
"model": "CL",
"value": "cl"
},
{
"model": "Integra",
"value": "integra"
},
{
"model": "NSX",
"value": "nsx"
},
{
"model": "RL",
"value": "rl"
},
{
"model": "SLX",
"value": "slx"
},
{
"model": "TL",
"value": "tl"
}
]
}