Currency
Request Currency Conversion Rate & Value Multiple Exchanger - POST
post/convert
Request body
Example request
{
"amount": 2.5,
"from": "USD",
"to": "AED",
"decimalPoints": 4,
"cacheTime": "120s",
"exchanger": [
{
"name": "yahoo"
},
{
"name": "google"
},
{
"name": "themoneyconverter",
"userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:21.0) Gecko/20100101 Firefox/21.0"
}
]
}Response
successful operation
Example response
{
"from": "USD",
"to": "AED",
"originalAmount": 1.54,
"exchangeValue": 17.91,
"convertedAmount": 27.5814,
"convertedText": "1 USD is worth 3.675 AED",
"exchangerName": "google",
"rateDateTime": "2018-09-25T12:17:17Z"
}