> ## Documentation Index
> Fetch the complete documentation index at: https://docs.driv.ly/llms.txt
> Use this file to discover all available pages before exploring further.

# Quote Detail

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

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

<ParamField path="vin" type="string" required>
  The Vehicle Identification Number (e.g. WP0AF2A99KS165242)
</ParamField>

## Response

<ResponseField name="data" type="object" required>
  <Expandable defaultOpen>
    <ResponseField name="vehicleType" type="enum<string>">
      The type of vehicle. e.g. "standard"

      Avalible options: `standard`, `commercial`, `classic`, `motorcycle`
    </ResponseField>

    <ResponseField name="price" type="number">
      The price of the detail. e.g. 220
    </ResponseField>
  </Expandable>
</ResponseField>

<ResponseExample>
  ```json Response theme={null}
  {
    "data": {
      "vehicleType": "standard",
      "price": 220
    }
  }
  ```
</ResponseExample>
