Currency API
Real time currency exchange conversion in 168 currencies.
Convert
Currency exchange conversion
REQUEST
POST
/currency/convert/
{
"authentication": {
"partnerId": "your-partner-id",
"signature": "your-signature",
"ip":"123.456.78.912"
},
"convert":{
"from":"EUR",
"to":"USD",
"amount":100
}
}
RESPONSE
SUCCESS
{
"from": "EUR",
"fromAmount": 100,
"to": "USD",
"toAmount": 120.625
}
RESPONSE
ERROR
{
"errorCode": "CURRENCY",
"errorMessage": "Currency is not supported or invalid."
}