Fetch fee

Retrieve the fee that will be charged for the disbursement service. This fee is charged per single disbursement in the batch.

The conversion rate and disbursement fees are separate. After conversion, the disbursement fee will still be applied for the service.

Retrieve the fee for a transfer of an amount for the specified currency

get
Authorizations
Query parameters
amountnumber · doubleOptional
currencystringOptional
countrystringOptional
Responses
200
Success
application/json
get
GET /v1/transfers/fee HTTP/1.1
Host: 
Authorization: YOUR_API_KEY
Accept: */*
200

Success

{
  "status": "success",
  "message": "text",
  "data": {
    "fee": 1,
    "amount": 1,
    "currency": "text",
    "country": "text"
  },
  "meta": {},
  "errors": {
    "ANY_ADDITIONAL_PROPERTY": [
      "text"
    ]
  },
  "is_error": true
}

Last updated