The price of the item in the local currency where you are shopping.
Check the current interbank rate (e.g., if converting EUR to USD, enter 1.10).
Standard Amex Card (2.7% Fee)
Platinum/Gold Travel Card (0% Fee)
Custom / Other
Base Conversion Cost:–
Amex Foreign Transaction Fee:–
Total Billed to Card:–
Effective Exchange Rate:–
function updateFeePlaceholder() {
var cardType = document.getElementById('cardType').value;
var customContainer = document.getElementById('customFeeContainer');
var ftfInput = document.getElementById('ftfPercent');
if (cardType === 'custom') {
customContainer.style.display = 'block';
} else {
customContainer.style.display = 'none';
if (cardType === 'standard') {
ftfInput.value = 2.7;
} else if (cardType === 'platinum') {
ftfInput.value = 0;
}
}
}
function calculateAmexRate() {
// Get Inputs
var amount = parseFloat(document.getElementById('purchaseAmount').value);
var rate = parseFloat(document.getElementById('exchangeRate').value);
var ftfPercent = parseFloat(document.getElementById('ftfPercent').value);
// Validation
if (isNaN(amount) || amount <= 0) {
alert("Please enter a valid positive transaction amount.");
return;
}
if (isNaN(rate) || rate <= 0) {
alert("Please enter a valid exchange rate.");
return;
}
if (isNaN(ftfPercent) || ftfPercent < 0) {
ftfPercent = 0;
}
// Calculation Logic
// 1. Calculate raw market cost
var baseCost = amount * rate;
// 2. Calculate the fee charged by Amex (Percentage of the converted amount)
var feeAmount = baseCost * (ftfPercent / 100);
// 3. Total cost to the user
var totalCost = baseCost + feeAmount;
// 4. Effective Rate (Total Cost / Original Foreign Amount)
var effectiveRate = totalCost / amount;
// Display Results
document.getElementById('resBaseCost').innerText = baseCost.toFixed(2);
document.getElementById('resFeeAmount').innerText = feeAmount.toFixed(2);
document.getElementById('resTotal').innerText = totalCost.toFixed(2);
document.getElementById('resEffectiveRate').innerText = effectiveRate.toFixed(4);
// Show Results Area
document.getElementById('results').style.display = 'block';
}
Understanding Amex Currency Exchange Rates and Fees
When using your American Express card abroad or for purchasing goods in a foreign currency, understanding the final cost involves more than just looking up the current exchange rate on Google. The Amex Currency Exchange Rates Calculator helps you estimate the actual amount that will appear on your billing statement by accounting for the base exchange rate and the applicable foreign transaction fees.
How American Express Calculates Exchange Rates
Unlike standard bank transfers, credit card currency conversion involves specific steps governed by the card network (American Express) and the issuing bank. The process generally works as follows:
Base Rate: Amex uses a wholesale market rate determined on the day the transaction is processed (which may be a day or two after the actual purchase). This rate is typically very close to the interbank rate.
Foreign Transaction Fee (FTF): This is a surcharge applied to the converted amount. For many standard American Express cards (like the Amex Everyday® Credit Card or Blue Cash Everyday®), this fee is typically 2.7%.
Total Cost: The final amount billed is the converted base amount plus the FTF.
Example Calculation: If you spend €100 and the rate is 1.10 USD/EUR:
Base Cost: $110.00
2.7% Fee: $2.97 Total Billed: $112.97
Which Amex Cards Have No Foreign Transaction Fees?
If you are a frequent traveler, the 2.7% fee can add up quickly. Fortunately, American Express offers several premium travel cards that waive this fee entirely. When using the calculator above, select "Platinum/Gold Travel Card" if you hold one of the following:
The Platinum Card® from American Express
American Express® Gold Card
Delta SkyMiles® Cards (Gold, Platinum, and Reserve)
Marriott Bonvoy Brilliant® American Express® Card
For these cards, the "Effective Exchange Rate" is essentially the market rate, making them highly cost-effective for international spending.
Why the "Effective Rate" Matters
The "Effective Exchange Rate" displayed in our calculator represents the true cost of your currency. Even if the market rate is favourable, a high foreign transaction fee makes the currency more expensive to buy. By comparing the effective rate to the market rate, you can determine exactly how much extra you are paying for the convenience of using your card versus cash or other payment methods.
Tips for Minimizing Currency Conversion Costs
Pay in Local Currency: When a merchant asks if you want to pay in dollars (Dynamic Currency Conversion) or the local currency (e.g., Euros, Yen), always choose the local currency. The merchant's exchange rate is almost always worse than Amex's rate.
Use the Right Card: Use a card with 0% foreign transaction fees for all international purchases.
Check the Processing Date: Remember that exchange rates fluctuate. The rate applied is based on when the transaction processes, not necessarily the exact moment you swipe the card.