Credit Interest Rates
Credit Interest Rates API allows you to get current interest rates.
Parameters
Name | Type | Description |
creditType |
string | I : Consumer Loan, K :Mortgage Loan, T : Car Loan. (Required) |
Data Returned
Data is returned as JSON as specified by the dataFormat parameter.
Regardless of format, the data contains the following fields:
Name | Type | Description |
applicationStartDate |
string | Loan start date.In the format yyyy-MM-dd |
applicationEndDate |
string | Loan end date.In the format yyyy-MM-dd |
minTerm |
string | Minumum loan term.Term in months. |
maxTerm |
string | Maximum loan term.Term in months. |
minAmount |
string | Minimum amount of the loan. |
maxAmount |
string | Maximum amount of the loan. |
taxRate |
string | Tax rate of loan. |
fundRate |
string | Fund rate of loan. |
expenseAmount |
string | The amount of the expense. |
interestTerm |
string | Interest Term. |
interestCount |
string | Interest Count. |
creditAmount |
string | Total amount of loan. |
rate |
string | Interest rate on the loan. |
Examples
Request:
GET https://apigate.akbank.com/api/mock/creditInterestRates?creditType=I
Response:
{
"returnCode": "API-00000",
"returnMsg": "İşlem başarıyla gerçekleşmiştir.",
"data":
{
"applicationStartDate": "23.03.2011",
"applicationEndDate": "31.12.2015",
"minTerm": 1,
"maxTerm": 36,
"minAmount": 5000,
"maxAmount": 75000,
"taxRate": 5,
"fundRate": 15,
"description": "WEB HESAPLAMA ARACI",
"expenseAmount": 10,
"interestTerm": 0,
"interestCount": 5,
"creditAmount": 15000,
"interestArrayList": [
{
"minTerm": 1,
"maxTerm": 6,
"rate": 6
},
{
"minTerm": 7,
"maxTerm": 12,
"rate": 12
}
]
}
}
-
API URL : https://apigate.akbank.com/api/mock
-
-
-