Auto.dev

Interest Rates API

Current auto loan interest rates and financing options based on vehicle and borrower profile

Get current interest rates for auto loans, leases, and other financing options. Retrieve personalized rates based on vehicle details, credit score, location, and loan terms.

Endpoint

GET https://api.auto.dev/apr/{vin}

View in Browser

https://api.auto.dev/apr/1C4HJXEN5MW592818?year=2021&make=Jeep&model=Wrangler&zip=37129&creditScore=720&vehicleAge=3&vehicleMileage=36000

Parameters

Path Parameters

PropTypeDefault
vin
string
-

Query Parameters

PropTypeDefault
year
number
-
make
string
-
model
string
-
zip
string
-
creditScore
string
-
vehicleAge?
number
-
vehicleMileage?
string
-

Example Request

curl -X GET "https://api.auto.dev/apr/1C4HJXEN5MW592818?year=2021&make=Jeep&model=Wrangler&zip=37129&creditScore=720&vehicleAge=3&vehicleMileage=36000" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json"

Response Structure

PropTypeDefault
vehicle?
object
-
vehicle.vin?
string
-
vehicle.year?
number
-
vehicle.make?
string
-
vehicle.model?
string
-
zip?
string
-
creditScore?
string
-
vehicleAge?
number
-
vehicleMileage?
string
-
apr?
object
-
apr.36?
number
-
apr.48?
number
-
apr.60?
number
-
apr.72?
number
-
apr.84?
number
-

Example Response

{
  "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
  }
}

Error Responses

Invalid VIN

{
  "status": 400,
  "error": "VIN must be exactly 17 characters containing only letters and numbers (excluding I, O, Q)",
  "code": "INVALID_VIN_FORMAT",
  "path": "/apr/123Invalid",
  "requestId": "a1b2c3d4e5f6g7h8"
}

VIN Not Found

{
  "status": 404,
  "error": "No vehicle data found for the provided VIN",
  "code": "VIN_NOT_FOUND",
  "path": "/apr/WP0AF2A99KS165242",
  "requestId": "b2c3d4e5f6g7h8i9"
}

Interactive API Reference

Ready to test this endpoint? Use our interactive API playground to make live requests and see real responses.

Try Interest Rates API

Test this endpoint with your API key and explore live responses

Plan Availability

  • Starter: ❌ Not available
  • Growth: ✅ Available
  • Scale: ✅ Available

See pricing for plan details and signup.

Was this API reference helpful?