GET
/
{vin}
/
detail
curl --request GET \
  --url https://wash.vin/{vin}/detail
{
  "data": {
    "vehicleType": "standard",
    "price": 220
  }
}

This API is currently in closed beta, if you would like to participate please contact us!

Find out how much it will cost to get a certain vehicle detailed. Most cases, the price is going to be $220, since 98% of vehicles we support are standard vehicles. However, this API can verify the price before any work is done.

Path Parameters

vin
string
required

The Vehicle Identification Number (e.g. WP0AF2A99KS165242)

Response

data
object
required
{
  "data": {
    "vehicleType": "standard",
    "price": 220
  }
}