Skip to main content
GET
/
{vin}
Get Payments
curl --request GET \
  --url https://payments.vin/{vin}
{
  "vehicle": {
    "vin": "1C4HJXEN5MW592818",
    "year": "2021",
    "make": "Jeep",
    "model": "Wrangler"
  },
  "criteria": {
    "price": 25000,
    "zip": "43345",
    "docFee": 200,
    "tradeIn": 0
  },
  "paymentsData": {
    "loanAmount": 27093.5,
    "loanMonthlyPayment": 434.23,
    "loanMonthlyPaymentWithTaxes": 470.59,
    "totalTaxesAndFees": 2093.5,
    "taxes": {
      "citySalesTax": 0,
      "combinedSalesTax": 1812.5,
      "countySalesTax": 375,
      "districtSalesTax": 0,
      "stateSalesTax": 1437.5,
      "gasGuzzlerTax": 0
    },
    "fees": {
      "titleFee": 15,
      "registrationFee": 46,
      "dmvFee": 20,
      "combinedFees": 281,
      "docFee": 200,
      "dmvFees": {
        "Temporary Tag": 20
      }
    },
    "calculationCriteria": {
      "numberOfMonths": 72,
      "financeRate": 7.663,
      "downPayment": 0,
      "tradeIn": 0,
      "tradeInOwedAmount": 0,
      "salesPrice": 25000,
      "conditionalIncentiveAmount": 0,
      "primaryIncentiveAmount": 0,
      "docFee": 200,
      "zipCode": "43345",
      "styleId": 401858048,
      "marketValue": 25000,
      "withConcreteTaxesAndFees": true,
      "applyLimits": true,
      "msrp": 25000,
      "lowerLimit": false
    },
    "limitCriteria": {
      "limitPercentage": 70,
      "limitPrice": 25000,
      "limits": []
    }
  },
  "apr": {
    "36": 7.644,
    "48": 7.644,
    "60": 7.524,
    "72": 7.663,
    "84": 8.263
  },
  "totalTaxesAndFees": 2093.5,
  "taxes": {
    "citySalesTax": 0,
    "combinedSalesTax": 1812.5,
    "countySalesTax": 375,
    "districtSalesTax": 0,
    "stateSalesTax": 1437.5,
    "gasGuzzlerTax": 0
  },
  "fees": {
    "titleFee": 15,
    "registrationFee": 46,
    "dmvFee": 20,
    "combinedFees": 281,
    "docFee": 200,
    "dmvFees": {
      "Temporary Tag": 20
    }
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.drivly.dev/llms.txt

Use this file to discover all available pages before exploring further.

vin
string
required
The Vehicle Identification Number (e.g. WP0AF2A99KS165242)

Response

The response will be an array of search results. Each result will contain the text of the search result and the filter object of the search result.
vehicle
object
required
The vehicle object contains the vin, year, make, and model of the vehicle.
criteria
object
required
The criteria object contains the price, zip, docFee, and tradeIn of the vehicle.
paymentsData
object
required
The paymentsData object contains the loanAmount, loanMonthlyPayment, loanMonthlyPaymentWithTaxes, totalTaxesAndFees, taxes, fees, calculationCriteria, and limitCriteria of the vehicle.
{
  "vehicle": {
    "vin": "1C4HJXEN5MW592818",
    "year": "2021",
    "make": "Jeep",
    "model": "Wrangler"
  },
  "criteria": {
    "price": 25000,
    "zip": "43345",
    "docFee": 200,
    "tradeIn": 0
  },
  "paymentsData": {
    "loanAmount": 27093.5,
    "loanMonthlyPayment": 434.23,
    "loanMonthlyPaymentWithTaxes": 470.59,
    "totalTaxesAndFees": 2093.5,
    "taxes": {
      "citySalesTax": 0,
      "combinedSalesTax": 1812.5,
      "countySalesTax": 375,
      "districtSalesTax": 0,
      "stateSalesTax": 1437.5,
      "gasGuzzlerTax": 0
    },
    "fees": {
      "titleFee": 15,
      "registrationFee": 46,
      "dmvFee": 20,
      "combinedFees": 281,
      "docFee": 200,
      "dmvFees": {
        "Temporary Tag": 20
      }
    },
    "calculationCriteria": {
      "numberOfMonths": 72,
      "financeRate": 7.663,
      "downPayment": 0,
      "tradeIn": 0,
      "tradeInOwedAmount": 0,
      "salesPrice": 25000,
      "conditionalIncentiveAmount": 0,
      "primaryIncentiveAmount": 0,
      "docFee": 200,
      "zipCode": "43345",
      "styleId": 401858048,
      "marketValue": 25000,
      "withConcreteTaxesAndFees": true,
      "applyLimits": true,
      "msrp": 25000,
      "lowerLimit": false
    },
    "limitCriteria": {
      "limitPercentage": 70,
      "limitPrice": 25000,
      "limits": []
    }
  },
  "apr": {
    "36": 7.644,
    "48": 7.644,
    "60": 7.524,
    "72": 7.663,
    "84": 8.263
  },
  "totalTaxesAndFees": 2093.5,
  "taxes": {
    "citySalesTax": 0,
    "combinedSalesTax": 1812.5,
    "countySalesTax": 375,
    "districtSalesTax": 0,
    "stateSalesTax": 1437.5,
    "gasGuzzlerTax": 0
  },
  "fees": {
    "titleFee": 15,
    "registrationFee": 46,
    "dmvFee": 20,
    "combinedFees": 281,
    "docFee": 200,
    "dmvFees": {
      "Temporary Tag": 20
    }
  }
}