POST
/
{vin}
/
inspection
curl --request POST \
  --url https://wash.vin/{vin}/inspection \
  --header 'Content-Type: application/json' \
  --data '{
  "contact": {
    "name": "<string>",
    "phone": "<string>"
  },
  "addons": [
    "<string>"
  ]
}'
{
  "data": {
    "id": "wdr_hBNxywxcUZ",
    "status": "pending",
    "estimatedTime": null,
    "invoice": {
      "id": "inv_zzmsiUloNc"
      "paid": false,
      "total": 220,
      "items": [
        {
          "service": "wash-and-inspection",
          "name": "standard-inspection",
          "description": "Standard inspection for WP0AF2A99KS165242",
          "price": 220,
          "quantity": 1
        }
      ]
    }
  }
}

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

Orders a inspection for the specified vehicle.

Inspection is a service that allows you to get an in-depth look at the vehicle’s condition. This service is useful if you wish to know more about the vehicle from a third-party professional.

Path Parameters

vin
string
required

The Vehicle Identification Number (e.g. WP0AF2A99KS165242)

Body Parameters

contact
object
required

The contact information of the person ordering the inspection.

addons
string[]

The addons that the person ordering the inspection wants to include in the inspection. Avalible options: carfax, verbal-assessment.

  • carfax: A report that provides information about the vehicle’s history.
  • verbal-assessment: A member of the inspection team will call the person ordering the inspection and provide a verbal assessment of the vehicle. Useful if you wish to know more, or ask questions about the vehicle.

Response

data
object
required
{
  "data": {
    "id": "wdr_hBNxywxcUZ",
    "status": "pending",
    "estimatedTime": null,
    "invoice": {
      "id": "inv_zzmsiUloNc"
      "paid": false,
      "total": 220,
      "items": [
        {
          "service": "wash-and-inspection",
          "name": "standard-inspection",
          "description": "Standard inspection for WP0AF2A99KS165242",
          "price": 220,
          "quantity": 1
        }
      ]
    }
  }
}