> ## 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.

# Current Interest Rates

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

## Response

The response will be an object containing the vehicle, zip, creditScore, vehicleAge, vehicleMileage, and apr objects.

<ResponseField name="vehicle" type="object" required>
  The vehicle object contains the vin, year, make, and model of the vehicle.

  <Expandable title="properties">
    <ResponseField name="vin" type="string">
      The Vehicle Identification Number (e.g. 1C4HJXEN5MW592818)
    </ResponseField>

    <ResponseField name="year" type="string">
      The year of the vehicle (e.g. 2021)
    </ResponseField>

    <ResponseField name="make" type="string">
      The make of the vehicle (e.g. Jeep)
    </ResponseField>

    <ResponseField name="model" type="string">
      The model of the vehicle (e.g. Wrangler)
    </ResponseField>
  </Expandable>
</ResponseField>

<ResponseField name="zip" type="string">
  The zip code of the user (e.g. 37129)
</ResponseField>

<ResponseField name="creditScore" type="string">
  The credit score of the user (e.g. 720)
</ResponseField>

<ResponseField name="vehicleAge" type="number">
  The age of the vehicle (e.g. 3)
</ResponseField>

<ResponseField name="vehicleMileage" type="string">
  The mileage of the vehicle (e.g. 36000)
</ResponseField>

<ResponseField name="apr" type="object" required>
  The apr object contains the APR for 36, 48, 60, 72, and 84-month loans.

  <Expandable title="properties">
    <ResponseField name="36" type="number">
      The APR for a 36-month loan
    </ResponseField>

    <ResponseField name="48" type="number">
      The APR for a 48-month loan
    </ResponseField>

    <ResponseField name="60" type="number">
      The APR for a 60-month loan
    </ResponseField>

    <ResponseField name="72" type="number">
      The APR for a 72-month loan
    </ResponseField>

    <ResponseField name="84" type="number">
      The APR for a 84-month loan
    </ResponseField>
  </Expandable>
</ResponseField>

<ResponseExample>
  ```json Response theme={null}
  {
    "vehicle": {
      "vin": "1C4HJXEN5MW592818",
      "year": "2021",
      "make": "Jeep",
      "model": "Wrangler"
    },
    "zip": "37129",
    "creditScore": "720",
    "vehicleAge": 3,
    "vehicleMileage": "36000",
    "apr": {
      "36": 7.644,
      "48": 7.644,
      "60": 7.524,
      "72": 7.663,
      "84": 8.263
    }
  }
  ```
</ResponseExample>
