Fetch rate
Retrieve the conversion rate that will be charged for the disbursement entry. This rate only differs from one (1) if the source currency specified is not the same as the destination currency.
Authorizations
Query parameters
amountnumber · doubleOptional
source_currencystringOptional
destination_currencystringOptional
Responses
200
Success
application/json
get
GET /v1/transfers/rate HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Accept: */*
200
Success
{
"status": "success",
"message": "text",
"data": {
"rate": 1,
"source": {
"amount": 1,
"currency": "text"
},
"destination": {
"amount": 1,
"currency": "text"
}
},
"meta": {},
"errors": {
"ANY_ADDITIONAL_PROPERTY": [
"text"
]
},
"is_error": true
}
Last updated