Fee rate
Conversion Rate
POST METHOD
{{baseUrl}}/api/v2/rate
{
"curFrom":"NGN",
"curTo":"CAD",
"receivingCountry":"CA"
}
Field | Required | Data Type | Description |
---|---|---|---|
country | true | String | Length: 2, Country ISO code i.e US. |
curFrom | true | String | Length: 3, Currency ISO code i.e USD. |
curTo | true | String | Length: 3, Currency ISO code i.e NGN. |
Response
{
"status": true,
"content": {
"data": {
"peer": "NGNCAD",
"rate": 0.002161,
"fee": 0,
"feeMode": "sum",
"minLimit": 100,
"maxLimit": 1000000000,
"dailyLimit": 10000000000,
"monthlyLimit": 10000000000
}
}
}
Updated about 2 years ago