---
title: "Calculate vehicle loan payments"
method: GET
path: "/payments/{vin}"
tags: ["Valuation"]
---

# Calculate vehicle loan payments

`GET /payments/{vin}`

Calculate monthly payment schedule for a vehicle loan based on price, down payment, loan term, and interest rate.

## Path parameters

- `vin` string, required

## Query parameters

- `price` number, required
- `downPayment` number, required
- `loanTerm` integer, required
- `interestRate` number, required

## Response `200`

Payment calculation result

- PaymentsResponse
  - `vin` string, required
  - `payments` object[], required
    - `amount` number
    - `currency` string
    - `frequency` 'one-time' | 'monthly'
    - `type` 'down-payment' | 'loan'
    - `description` string, nullable
    - `dueDate` string, nullable — Payment due date (YYYY-MM-DD)
  - `loanAmount` number, required — Total loan amount after down payment
  - `totalPaid` number, required — Total amount to be paid over loan term
  - `totalInterest` number, required — Total interest paid
  - `monthlyPayment` number, required — Monthly payment amount
  - `currency` string, required

## Other responses

- `400` — Missing or invalid parameters
- `401` — Invalid or missing API key

---

[API](https://skmtc.dev/carapi/apis/carapi-dev-automotive-data-api.md) · [All operations](https://skmtc.dev/carapi/apis/carapi-dev-automotive-data-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/carapi/carapi-dev-automotive-data-api/revisions/0ad5b085852b/schema)
