Remitly Exchange Rate Calculator

.remitly-calc-container { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; max-width: 800px; margin: 20px auto; padding: 25px; border: 1px solid #e1e1e1; border-radius: 12px; background-color: #ffffff; box-shadow: 0 4px 15px rgba(0,0,0,0.05); } .remitly-calc-header { text-align: center; margin-bottom: 30px; } .remitly-calc-header h2 { color: #0066cc; margin-bottom: 10px; } .remitly-calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 25px; } .remitly-input-group { display: flex; flex-direction: column; } .remitly-input-group label { font-weight: 600; margin-bottom: 8px; color: #333; font-size: 14px; } .remitly-input-group input, .remitly-input-group select { padding: 12px; border: 2px solid #edeff2; border-radius: 8px; font-size: 16px; transition: border-color 0.3s; } .remitly-input-group input:focus { border-color: #0066cc; outline: none; } .remitly-calc-btn { grid-column: span 2; background-color: #0066cc; color: white; border: none; padding: 15px; font-size: 18px; font-weight: bold; border-radius: 8px; cursor: pointer; transition: background-color 0.3s; } .remitly-calc-btn:hover { background-color: #004d99; } .remitly-result-box { margin-top: 25px; padding: 20px; background-color: #f0f7ff; border-radius: 8px; border-left: 5px solid #0066cc; display: none; } .remitly-result-item { display: flex; justify-content: space-between; margin-bottom: 10px; font-size: 16px; } .remitly-result-total { border-top: 1px solid #d0e3f7; padding-top: 10px; margin-top: 10px; font-weight: bold; font-size: 20px; color: #0066cc; } .remitly-article { margin-top: 40px; line-height: 1.6; color: #444; } .remitly-article h3 { color: #333; border-bottom: 2px solid #0066cc; display: inline-block; padding-bottom: 5px; } @media (max-width: 600px) { .remitly-calc-grid { grid-template-columns: 1fr; } .remitly-calc-btn { grid-column: span 1; } }

Remitly Exchange Rate & Fee Calculator

Estimate exactly how much your recipient will receive including fees and real-time rates.

Economy (Lower Fee, Slower) Express (Higher Fee, Instant)
Send Amount:
Transfer Fee:
Amount Converted:
Exchange Rate Used:
Recipient Receives:

How Remitly Exchange Rates Work

Remitly is a popular choice for international money transfers, offering two main speeds: Economy and Express. The exchange rate you receive often depends on which speed you choose and the promotional offers currently available for new customers.

Unlike some mid-market providers, Remitly typically adds a margin to the interbank exchange rate. This means the rate you see on Google might be slightly better than the rate offered in the app. This calculator helps you account for that difference by calculating the final amount based on the rate Remitly shows you at checkout.

Calculation Formula

To find the exact amount your recipient gets, we use the following logic:

(Amount to Send – Transfer Fee) × Exchange Rate = Total Received

Note: In some corridors, Remitly adds the fee on top of the send amount. This calculator assumes the fee is deducted from the principal or calculated separately as per the standard Remitly "Pay With" interface.

Examples of Remitly Transfers

  • USD to INR (Economy): Sending $1,000 at a rate of 83.25 with a $0 fee results in 83,250 INR for the recipient.
  • USD to PHP (Express): Sending $500 at a rate of 55.40 with a $3.99 fee (deducted) results in 27,483 PHP.
  • EUR to PKR: Sending €200 at a rate of 305.20 with a €1.99 fee results in 60,432 PKR.

What is the difference between Economy and Express?

Economy transfers are usually funded via bank account. They take 3-5 business days but often come with lower or zero transfer fees and occasionally better exchange rates. Express transfers are funded via debit or credit card and arrive almost instantly, though they usually incur higher fees and potentially credit card cash advance charges from your bank.

function calculateRemitlyTransfer() { var sendAmount = parseFloat(document.getElementById('sendAmount').value); var exchangeRate = parseFloat(document.getElementById('exchangeRate').value); var transferFee = parseFloat(document.getElementById('transferFee').value); if (isNaN(sendAmount) || isNaN(exchangeRate) || isNaN(transferFee)) { alert('Please enter valid numerical values for all fields.'); return; } if (sendAmount <= 0 || exchangeRate <= 0) { alert('Amount and Rate must be greater than zero.'); return; } // Logic: Recipient receives (Amount – Fee) * Rate // Note: Remitly sometimes charges fee ON TOP, but usually shows the deduction in the breakdown var amountToConvert = sendAmount – transferFee; if (amountToConvert < 0) { alert('Fee cannot be greater than the sending amount.'); return; } var totalReceived = amountToConvert * exchangeRate; // Display results document.getElementById('resSend').innerText = sendAmount.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2}); document.getElementById('resFee').innerText = transferFee.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2}); document.getElementById('resConverted').innerText = amountToConvert.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2}); document.getElementById('resRate').innerText = exchangeRate.toString(); document.getElementById('resTotal').innerText = totalReceived.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2}); document.getElementById('remitlyResult').style.display = 'block'; }

Leave a Comment