https://test-api.tbcbank.ge/v1/exchange-rates/commercial
https://api.tbcbank.ge/v1/exchange-rates/commercial
Authorization Type | Description |
---|
None | |
Parameter | Type | Description |
---|
apikey | string | Developer app API key |
Parameter | Type | Description |
---|
currency | string | list of comma-separated 3-letter currency codes for limiting results to specific currencies. e.g. USD,EUR,JPY |
curl --location --request GET 'https://test-api.tbcbank.ge/v1/exchange-rates/commercial?currency=usd, eur' \
--header 'apikey: I3Rz8QXBVPofKtucsenkW7g2n7aDwqBg'
Parameter | Type | Description |
---|
base | string | base currency (GEL) |
commercialRates | object | list of currency exchange rate pairs |
- currency | string | 3-digit currency code |
- buy | number | rate value at which bank is buying target currency |
- sell | number | rate value at which bank is selling target currency |
{
"base": "GEL",
"commercialRatesList": [
{
"currency": "EUR",
"buy": 3.6180,
"sell": 3.7460
},
{
"currency": "USD",
"buy": 3.0800,
"sell": 3.1560
}
]
}
In case of error, standard response in problem json will be returned.
Details can be found at Error Code Description