We are using cookies in our website in order to offer better service to you. You allow us to use cookies by continuing to use our internet website. You can reach the detailed information on cookies from our Privacy Policy and Cookies Policy.
X
Home > Api Products > Currency Conversions

Currency Conversions

Description

​This API takes the current currency, the amount of the currency and the currency to be converted as input and returns the equivalent amount of the currency to be converted.

How it Works

Parameters

This part needs to be in body of the request.
{
    "date": "2020-10-02",
    "code": "EUR",
    "exchange_code": "TRY",
    "amount": "6400.00"
}

Sample Request Dönüştürülmek istenen kur değerini hesaplar (Calculates the value of the chosen currency)

POST {API_HOST}/api/isbank/v1/currency-conversions/
Headers:
X-IBM-client-id: {YOUR_CLEINT_ID} 
X-IBM-client-secret: {YOUR_CLEINT_SECRET}
Authorization: Bearer {access_token} 
Content-Type: application/json


Sample Response

​​{

    "data":
        {
           "date": "2020-10-02",
           "code": "EUR",
           "exchange_code": "TRY",
           "amount": "56887.68",
        }
}​