Endpoints
Get Car Loan Rates By Institution ID
API Documentation
Endpoints
- GETGet Car Loan Rates By Institution ID
- GETList Car Loan Rates
- GETCar Loan Rates Time Series
- GETGet Credit Card Rates by Issuer
- GETList Credit Card Rates
- GETCredit Card Rates Time Series
- GETGet Mortgage Rates by Institution ID
- GETList Mortgage Rates
- GETMortgage Rates Time Series
- GETGet Personal Loan Rates by Institution ID
- GETGet Personal Loan Rates
- GETPersonal Loan Rates Time Series
Endpoints
Get Car Loan Rates By Institution ID
GET
/
api
/
v1
/
car-loan-rates
/
{institutionId}
curl --request GET \
--url https://ratesapi.nz/api/v1/car-loan-rates/{institutionId}
{
"type": "CarLoanRates",
"data": [
{
"id": "institution:anz",
"name": "ANZ",
"products": [
{
"id": "product:anz:standard",
"name": "Standard",
"rates": [
{
"id": "rate:anz:standard:18-months",
"rate": 4.29,
"plan": "Secured",
"condition": "$3,000 to $50,000"
}
]
}
]
}
],
"lastUpdated": "2021-08-01T00:00:00.000Z",
"termsOfUse": "<string>",
"timestamp": "2025-03-04T02:30:00.000Z"
}
Path Parameters
Examples:
"institution:asb"
"institution:kiwibank"
Response
200
application/json
Retrieve all car loan rates for all institutions
The response is of type object
.
curl --request GET \
--url https://ratesapi.nz/api/v1/car-loan-rates/{institutionId}
{
"type": "CarLoanRates",
"data": [
{
"id": "institution:anz",
"name": "ANZ",
"products": [
{
"id": "product:anz:standard",
"name": "Standard",
"rates": [
{
"id": "rate:anz:standard:18-months",
"rate": 4.29,
"plan": "Secured",
"condition": "$3,000 to $50,000"
}
]
}
]
}
],
"lastUpdated": "2021-08-01T00:00:00.000Z",
"termsOfUse": "<string>",
"timestamp": "2025-03-04T02:30:00.000Z"
}