Exchange Rates
GET
/v1/references/ratesLast modified:Â 2 months ago
Maintainer:Â Not configured
Find Exchange Rate(s)
by parameter(s).
Request
Query Params
source_currency
string  | nullÂ
required
Source (send) three-letter ISO 4217 currency code
destination_currency
string  | nullÂ
required
Target (receive) three-letter ISO 4217 currency code
source_amount
number <double> | nullÂ
required
Amount in source currency
(either source or target amount is required, do not put both side)
destination_amount
number <double> | nullÂ
optional
Amount in destination currency
(either source or target amount is required, do not put both side)
source_country
stringÂ
required
Source country
destination_country
stringÂ
required
Destination country
Request samples
Responses
OK(200)
Bad Request(400)
Unauthorized(401)
429(429)
Server Error(500)
HTTP Code:Â 200
Content Type :Â JSONapplication/json
Success.
Data Schema
No schema defined
Example
{
"source_country": "HK",
"source_currency": "HKD",
"destination_country": "MO",
"destination_currency": "MOP",
"source_amount": 1000,
"destination_amount": 943.19,
"rate": 1.03319,
"created_timestamp": "2020-12-01T11:33:45.8758154+00:00",
"last_modified_timestamp": null,
"fee": 87.11,
"transaction_fee": 87.11,
"ts_rate": 1.03319,
"ts_inverse_rate": null,
"min_source_amount": 100
}
Last modified: 2 months ago