Endpoints
Get Credit Card Rates by Issuer
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 Credit Card Rates by Issuer
GET
/
api
/
v1
/
credit-card-rates
/
{issuerId}
curl --request GET \
--url https://ratesapi.nz/api/v1/credit-card-rates/{issuerId}
{
"type": "CreditCardRates",
"data": [
{
"id": "issuer:anz",
"name": "Amex",
"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"
}
]
}
],
"plans": [
{
"id": "plan:amex:airpoint-card",
"name": "Airpoint Card",
"interestFreePeriodInMonths": 55,
"primaryFeeNZD": 0,
"balanceTransferRate": 0,
"balanceTransferPeriod": "6 months",
"cashAdvanceRate": 0,
"purchaseRate": 0
}
]
}
],
"lastUpdated": "2021-08-01T00:00:00.000Z",
"termsOfUse": "<string>",
"timestamp": "2025-03-04T02:30:00.000Z"
}
Path Parameters
Examples:
"issuer:amex"
"issuer:gem"
Response
200
application/json
Retrieve all credit card rates for all institutions
The response is of type object
.
curl --request GET \
--url https://ratesapi.nz/api/v1/credit-card-rates/{issuerId}
{
"type": "CreditCardRates",
"data": [
{
"id": "issuer:anz",
"name": "Amex",
"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"
}
]
}
],
"plans": [
{
"id": "plan:amex:airpoint-card",
"name": "Airpoint Card",
"interestFreePeriodInMonths": 55,
"primaryFeeNZD": 0,
"balanceTransferRate": 0,
"balanceTransferPeriod": "6 months",
"cashAdvanceRate": 0,
"purchaseRate": 0
}
]
}
],
"lastUpdated": "2021-08-01T00:00:00.000Z",
"termsOfUse": "<string>",
"timestamp": "2025-03-04T02:30:00.000Z"
}