Estimate withdrawal fees
const url = 'https://api.wink.travel/api/managing-entity//payment/withdrawal/estimate?destinationIdentifier=&destinationKind=';const options = {method: 'GET', headers: {'Wink-Version': '2.0'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url 'https://api.wink.travel/api/managing-entity//payment/withdrawal/estimate?destinationIdentifier=&destinationKind=' \ --header 'Wink-Version: 2.0'Calculates the fee breakdown for a full-balance withdrawal to the chosen payout destination. Returns gross amount, transfer fee, FX fee (if applicable), and net payout amount. This is a read-only preview — no withdrawal is initiated.
Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ”Managing entity identifier
Query Parameters
Section titled “Query Parameters ”Identifier of the chosen BankAccount or RevolutPayoutAccount
Which collection on the managing entity to look up the destination in
Header Parameters
Section titled “Header Parameters ”Responses
Section titled “ Responses ”OK
Fee breakdown preview for a withdrawal — no funds are moved.
object
Full available balance before any fees
Revolut flat transfer fee ($5 USD converted to withdrawal currency)
FX exchange fee rate (0.006 or 0.010). Null if withdrawal currency is USD.
Calculated FX exchange fee amount. Null if withdrawal currency is USD.
Net amount the beneficiary would receive (grossAmount − transferFee − fxFee)
ISO 4217 currency code of the withdrawal
True if fees were computed during Revolut off-market hours (Fri 17:00 – Sun 18:00 Eastern)
Example
nullBad Request
object
object
Example generated
{ "type": "https://example.com", "title": "example", "status": 1, "detail": "example", "instance": "https://example.com", "properties": { "additionalProperty": "example" }}object
object
object
object
object
object
object
object
Unauthorized
object
object
Forbidden
object
object
Internal Server Error
object
Example generated
{}