Instant Cruise Refund Calculator- Free Tool

Official Cruise Refund Calculator

Instant Cruise Refund Calculator — Know your Exact Refund Amount in 30 Seconds. Fast, FREE , and updated for every major cruise line . Don’t lose money on cruise cancellations.What penalties apply before you cancel.Use our free calculator to see your exact refund and penalty charges instantly.

The Carnival and Royal Caribbean refund policies are based on a strict tiered penalty schedule Use our Calculator to Get personalized report in 30 Seconds.

Cruise Refund Calculator

Calculate your cruise refund with 99.5% accuracy-Absolutely FREE

Calculate Your Refund

Enter dates to determine the penalty tier.

Policy Schedule for Selected Fare

Please select a cruise line, fare type, and duration above to view the policy schedule.

`; row.insertCell().innerHTML = `
${(tier.penalty * 100).toFixed(0)}%
`; row.insertCell().innerHTML = `
${((1 - tier.penalty) * 100).toFixed(0)}%
`; }); policyScheduleDisplay.classList.remove('hidden'); }; const calculateRefund = () => { errorMessageDiv.classList.add('hidden'); resultContainer.classList.add('hidden'); draftResultContainer.classList.add('hidden'); const totalFare = parseFloat(fareInput.value); const sailingDateStr = sailingDateInput.value; const cancellationDateStr = cancellationDateInput.value; const status = paymentStatusSelect.value; if (!checkInputs()) { showError("Please fill out all required fields with valid data (including dates and amounts paid)."); return; } let paidAmount = totalFare; const conditionalInput = document.getElementById('paid-amount-input'); if (conditionalInput) { paidAmount = parseFloat(conditionalInput.value); } if (paidAmount > totalFare) { showError("The 'Amount Paid' cannot be greater than the 'Total Cruise Fare'. Please correct the amounts."); return; } const daysPrior = calculateDaysPrior(sailingDateStr, cancellationDateStr); const tier = getPenaltyTier(daysPrior); if (!tier) { showError("Could not determine cancellation policy tier. Please ensure dates are correctly selected and a policy is loaded."); return; } const penaltyRate = tier.penalty; const cashRefundRate = 1.0 - penaltyRate; const penaltyAmount = totalFare * penaltyRate; let estimatedCashRefund = totalFare * cashRefundRate; if (paidAmount < penaltyAmount) { estimatedCashRefund = 0; } else { estimatedCashRefund = paidAmount - penaltyAmount; } const actualPenaltyLoss = Math.min(paidAmount, penaltyAmount); daysPriorSpan.textContent = `${daysPrior} days`; penaltyPercentSpan.textContent = `${(penaltyRate * 100).toFixed(0)}% of Total Fare (${formatCurrency(totalFare)})`; penaltyAmountSpan.textContent = formatCurrency(actualPenaltyLoss); refundAmountSpan.textContent = formatCurrency(estimatedCashRefund); resultContainer.classList.remove('hidden'); generateDraftBtn.disabled = false; }; const showError = (message) => { errorMessageDiv.textContent = message; errorMessageDiv.classList.remove('hidden'); calculateBtn.disabled = true; resultContainer.classList.add('hidden'); draftResultContainer.classList.add('hidden'); }; const generateConditionalPaymentInput = () => { const status = paymentStatusSelect.value; conditionalPaymentInputDiv.innerHTML = ''; if (status === 'installments' || status === 'deposit_only') { conditionalPaymentInputDiv.classList.remove('hidden'); const labelText = status === 'installments' ? "Amount Paid To Date:" : "Deposit Amount Paid:"; const inputHtml = `
$
`; conditionalPaymentInputDiv.innerHTML = inputHtml; document.getElementById('paid-amount-input').addEventListener('input', checkInputs); } else { conditionalPaymentInputDiv.classList.add('hidden'); } checkInputs(); }; const generateCommunicationDraft = async () => { const line = lineSelect.options[lineSelect.selectedIndex].text; const fareType = fareTypeSelect.options[fareTypeSelect.selectedIndex].text; const sailingDate = sailingDateInput.value; const cancellationDate = cancellationDateInput.value; const totalFare = formatCurrency(parseFloat(fareInput.value)); const penaltyPercent = penaltyPercentSpan.textContent; const penaltyAmount = penaltyAmountSpan.textContent; const refundAmount = refundAmountSpan.textContent; const daysPrior = daysPriorSpan.textContent; const userPrompt = ` I need to write a professional email to my cruise line to formally request a cash refund for a canceled booking. Please draft a formal, concise, and professional email suitable for the following scenario, clearly stating the booking details and the expected refund amount. --- Scenario Details --- - Cruise Line: ${line} - Fare Type: ${fareType} - Original Sailing Date: ${sailingDate} - Cancellation Date: ${cancellationDate} - Days Prior to Sailing: ${daysPrior} - Total Cruise Fare: ${totalFare} - Calculated Penalty: ${penaltyPercent} (Amount: ${penaltyAmount}) - Expected Cash Refund: ${refundAmount} Draft the email starting with a placeholder for the booking number. Do not include a subject line. `; const systemPrompt = "You are a professional travel agent assistant. Your task is to generate a formal and concise letter based on the provided inputs, using a polite and clear tone. The output must be the letter text only, suitable for immediate copying into an email body."; generateDraftBtn.disabled = true; draftIcon.classList.remove('fa-magic'); draftIcon.classList.add('loading-ring'); draftText.textContent = 'Generating Draft...'; draftResultContainer.classList.add('hidden'); generatedDraftDiv.textContent = ''; const payload = { contents: [{ parts: [{ text: userPrompt }] }], systemInstruction: { parts: [{ text: systemPrompt }] }, tools: [{ "google_search": {} }], }; const options = { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify(payload) }; try { const response = await fetchWithRetry(API_URL, options); const result = await response.json(); const text = result.candidates?.[0]?.content?.parts?.[0]?.text || "Error: Could not generate draft. Please try again."; generatedDraftDiv.textContent = text; draftResultContainer.classList.remove('hidden'); } catch (error) { console.error("Gemini API Error:", error); generatedDraftDiv.textContent = `Error generating draft: ${error.message}. This usually means no API key is configured for client-side calls.`; draftResultContainer.classList.remove('hidden'); } finally { draftIcon.classList.remove('loading-ring'); draftIcon.classList.add('fa-magic'); draftText.textContent = '✨ Generate Refund Communication Draft'; checkInputs(); } }; calculateBtn.addEventListener('click', calculateRefund); generateDraftBtn.addEventListener('click', generateCommunicationDraft); const inputElements = [ lineSelect, fareTypeSelect, sailingDurationSelect, cabinTypeSelect, sailingDateInput, cancellationDateInput, fareInput, paymentStatusSelect ]; inputElements.forEach(input => { input.addEventListener('change', () => { resultContainer.classList.add('hidden'); draftResultContainer.classList.add('hidden'); fareTypeSelect.disabled = !lineSelect.value; sailingDurationSelect.disabled = !fareTypeSelect.value; cabinTypeSelect.disabled = !sailingDurationSelect.value; checkInputs(); displayPolicySchedule(); }); if (input.type === 'date' || input.type === 'number') { input.addEventListener('input', checkInputs); } }); paymentStatusSelect.addEventListener('change', generateConditionalPaymentInput); const copyDraftBtnEl = document.getElementById('copy-draft-btn'); if (copyDraftBtnEl) { copyDraftBtnEl.addEventListener('click', () => { const textToCopy = generatedDraftDiv.textContent; try { const tempTextArea = document.createElement('textarea'); tempTextArea.value = textToCopy; document.body.appendChild(tempTextArea); tempTextArea.select(); document.execCommand('copy'); document.body.removeChild(tempTextArea); copyMessageDiv.classList.remove('hidden'); setTimeout(() => copyMessageDiv.classList.add('hidden'), 2000); } catch (err) { console.error('Could not copy text: ', err); copyMessageDiv.textContent = 'Failed to copy. Please manually copy the text.'; copyMessageDiv.classList.remove('hidden'); copyMessageDiv.classList.add('text-red-600'); setTimeout(() => { copyMessageDiv.classList.add('hidden'); copyMessageDiv.classList.remove('text-red-600'); copyMessageDiv.textContent = 'Copied to clipboard!'; }, 3000); } }); } window.addEventListener('load', () => { // Defensive: some DOM refs may not exist if shortcode isn't on page try { checkInputs(); displayPolicySchedule(); } catch (e) { /* ignore if DOM not present */ } });

⚙️ 9-Step Cruise Cancellation Refund Calculator: Estimate Your Cash Back
(This text provides a comprehensive guide to quickly and accurately calculate the estimated cash refund and Future Cruise Credit (FCC) you will receive when canceling any major cruise line booking (Carnival, Royal Caribbean, Princess, etc.) based on your exact booking details.)


Step 1: Select Your Cruise Line
First, select the specific cruise line you booked (e.g., Carnival, Royal Caribbean, Princess), as their penalty schedules are unique to each brand.


Step 2: Select Your Fare/Deposit Type
Choose whether your booking was made under a ‘Non-Refundable’ (NRD) or ‘Standard/Refundable’ deposit, as this dictates the initial deposit penalty.


Step 3: Enter Sailing Duration (Nights)
Input the number of nights for your voyage. Penalty tiers often shift based on the trip’s length (e.g., 5-night vs. 9-night cruises).


Step 4: Select Your Cabin Category
Choose your cabin category (Inside, Balcony, Suite). Suite bookings often have earlier final payment and cancellation deadlines.


Step 5: Enter Sailing Date
Input the scheduled departure date of your cruise. This is the crucial date used to calculate ‘Days Before Sailing’ against your cancellation date.


Step 6: Enter Date You Are Cancelling
Input the date you are officially canceling the booking. The time difference between the sailing date and this date determines your penalty percentage.


Step 7: Input Total Cruise Fare in USD
Enter the total dollar amount paid only for the cruise fare (excluding taxes/fees). This is the base figure the cancellation penalty is applied to.


Step 8: Select Payment Status
Indicate your payment status (Fully Paid, Monthly Installments, or Only Deposit). This helps determine how much of the penalized fare you have actually paid.


Step 9: Calculate and View Refund
Click ‘Calculate’ to instantly see the estimated cash refund, the exact penalty percentage applied, the amount forfeited, and any potential Future Cruise Credit (FCC) issued.


GENERAL CRUISE CANCELLTION WINDOW

Cancellation Window Breakdown: How Your Refund is Calculated

Days Before Sailing (DPS)Typical Penalty (Per Person)Standard Refund TypeCommon Scenario
90+ Days$0 to Deposit Amount OnlyFull Refund (Excl. Deposit)Best time to cancel for cash back.
75 – 89 Days25% of Total FarePartial Cash RefundA small percentage of fare is forfeited.
50 – 74 Days50% of Total FarePartial Cash RefundStandard cancellation window with moderate loss.
30 – 49 Days75% of Total FareCash & Future Credit MixHigh penalty period—review Future Cruise Credit (FCC) rules.
0 – 29 Days100% of Total FareNo Refund (Cash or FCC)All funds forfeited; only travel insurance may apply.

Last Minute Cruise Cancellation Comparative Policy Snapshot (Major Lines)

Non-Refundable Deposit (NRD) handling, the last-minute penalty window, and Future Cruise Credit (FCC) expiration terms.

Cruise LineNRD Forfeiture PolicyCancellation Window for 100% PenaltyFCC (Future Cruise Credit) Expiration (Typical)
Royal CaribbeanFull NRD forfeited upon cancellation.14 days or less before sailing.12 months from original sailing date.
CarnivalNRD may be convertible to a new sailing credit (fee applies).15 days or less before sailing.Varies; tied to a specific new booking window.
Norwegian (NCL)NRD is always forfeited; cannot be transferred.15 days or less before sailing.1 year from the date of issue.
Princess CruisesNRD is forfeited; often allowed to be transferred to a new booking within 90 days.50 days or less before sailing. (Wider Window)Generally 1 year from the date of issue.
Disney Cruise LineNRD is forfeited; often applied as a credit towards a future Disney sailing.14 days or less before sailing. (Varies by voyage length)Varies; typically a generous 1 year after the original sailing date.
Viking (Ocean)Deposit is non-refundable.45 days or less before sailing. (Wider Window)24 months from the cancellation date.

Accurate segmentation by cruise length

Cruise Length Days Before Departure (DBD) Cancellation Charge (Per Guest) Policy Note
2–5 Night Cruises Up to 76 days None (Deposit fully forfeited for Early Saver fares) Best window for cash refund of additional payments.
2–5 Night Cruises 55 to 30 days Deposit or 50% of Total Fare (whichever is greater) Significant penalty threshold.
2–5 Night Cruises 14 days or less 100% of Total Fare Total forfeiture; only taxes/fees are refunded.
6+ Night Cruises Up to 91 days None (Deposit fully forfeited for Early Saver fares) Longer cruises require earlier final payment and cancellation.
6+ Night Cruises 55 to 30 days Deposit or 50% of Total Fare (whichever is greater) Penalty starts earlier than on short cruises.
6+ Night Cruises 14 days or less 100% of Total Fare Total forfeiture of cruise fare.

(Royal Caribbean’s tiers are highly specific based on cruise duration.)

Cruise LengthDays Before Departure (DBD)Cancellation Charge (Per Guest)Non-Refundable Deposit (NRD) Rule
1–4 Night Cruises75 days or moreNo Charge (Except for NRD amount)NRD is retained, but remaining payments are refunded.
1–4 Night Cruises74 to 61 days50% of Total PricePenalty escalates quickly for short trips.
1–4 Night Cruises30 days or less100% of Total Price (No Refund)Maximum penalty for short cruises.
5–14 Night Cruises90 days or moreNo Charge (Except for NRD amount)Widest window for cancellation with minimal financial loss.
5–14 Night Cruises89 to 75 days25% of Total PriceFirst significant penalty tier begins.
5–14 Night Cruises30 days or less100% of Total Price (No Refund)Maximum penalty for standard cruises.

Princess Cruises Cancellation Policy: New Tier Structure

Princess is known for having an earlier 100% penalty date than Carnival/RCI

Cruise LengthDays Before Departure (DBD)Cancellation Charge (Per Guest)Key Policy Feature
All Sailings (1–24 days)Up to 90 daysNo Penalty (Except NRD/Non-refundable fares)The 90-day mark is the full refund cutoff.
All Sailings (1–24 days)75 to 89 days25% of Total ChargesFirst penalty tier.
All Sailings (1–24 days)61 to 74 days50% of Total ChargesPenalty reaches half-fare mark quickly.
All Sailings (1–24 days)30 days or less100% of Total ChargesNew 100% penalty window (formerly 14 days).

Disney Cruise Line Cancellation Policy: Vacation Price

Disney’s policy is unique as it distinguishes between Standard and Concierge bookings.

Cruise CategoryDays Before Departure (DBD)Cancellation Charge (Per Guest)Key Policy Feature
Standard: 1–5 Nights60 days or moreNo FeeCleanest cancellation window for short trips.
Standard: 6+ Nights90 days or moreNo FeeLonger cruises have a more generous 90-day grace period.
Standard (All)44 to 30 days50% of Vacation PriceThe first major penalty tier.
Standard (All)14 days or less100% of Vacation PriceTotal forfeiture for last-minute cancellations.
Suites/Concierge60 days or moreDeposit Only (Non-Refundable)Concierge has earlier deposit loss but sometimes less-steep later penalties.

Source of Refund Breakdown (Where the Money Comes From)

Expense CategoryRefund SourceRefundability (General Rule)Key Caveat
Cruise FareCruise LinePolicy-based (Tiered penalty schedule)Subject to the Days Before Sailing (DPS) calculation.
Port Fees & TaxesCruise Line100% RefundableFees that the cruise line has not yet paid to the port are always returned.
Pre-Paid GratuitiesCruise Line100% RefundableAlways refunded as they are a service not rendered.
Shore Excursions (Pre-Booked)Cruise Line/Vendor100% Refundable (72 hours prior)Must cancel pre-booked excursions outside of a short cutoff window.
Travel Insurance PremiumInsurance CompanyNot Refundable (After 14-day review period)The premium itself is non-refundable once the policy is active.

"Cancel For Any Reason" (CFAR) Waivers

CFAR Type / VendorPayout FormatPercentage of Loss CoveredPurchase Deadline
Cruise Line WaiverTypically Future Cruise Credit (FCC)75% of Non-Refundable MoniesMust purchase at time of initial deposit.
Third-Party CFAROften Cash (After claim approval)50% – 75% of Pre-Paid Trip CostMust purchase within 10-21 days of your initial cruise payment.
Standard Travel InsuranceCash (Only for covered reasons)100% of Non-Refundable MoniesNo limit on purchase date, but early purchase is recommended.

People Also Ask


1. What is my exact cash refund amount if I cancel my cruise 45 days before departure?

Your exact cash refund is highly conditional, depending on the **specific cruise line (Carnival, RCI, Princess)**, the length of the cruise, and your deposit type. To see the precise dollar amount you are estimated to receive, you must input your booking details into our **Cruise Refund Calculator** at the top of this page.


2. Will I receive a cash refund or a Future Cruise Credit (FCC) if I cancel my non-refundable deposit fare?

Whether you receive cash or an FCC depends entirely on the **penalty window you fall into**. To determine the exact penalty tier and see the estimated split between cash back and Future Cruise Credit for your specific sailing, please use our interactive **Cruise Refund Calculator** now.


3. How do I quickly determine my cancellation penalty percentage (25%, 50%, 75%, or 100%)?

Calculating the penalty percentage requires cross-referencing your cancellation date against your specific cruise line’s lengthy tiered schedule. The fastest way to accurately determine your penalty percentage is by entering your information into our **Cruise Refund Calculator**, which instantly performs this complex calculation for you.


4. Am I still eligible for a cash refund of my port fees and taxes, even if I cancel late?

Yes, port fees and taxes are almost always 100% refundable. To ensure you receive the maximum possible refund amount—which includes these refundable fees minus the cruise fare penalty—please use our **Cruise Refund Calculator** to generate your official estimate.


5. Which cruise lines’ policies (Carnival, RCI, Princess) does this calculator cover?

Our **Cruise Refund Calculator** is built using the official, detailed policy schedules for all major lines, including **Carnival Cruise Line, Royal Caribbean International, Princess Cruises, Disney Cruise Line**, and more. It provides accurate estimates based on the rules specific to your booked brand.


6. What is the **last possible day** I can cancel to minimize my penalty loss?

The penalty cutoff date is specific to your cruise length (e.g., 75 days vs. 90 days). To find the exact date you must cancel by to fall into the lowest penalty tier, input your sailing details into the **Cruise Refund Calculator** to see the date highlighted.


7. Does my specific cruise fare (e.g., Early Saver, Last Minute Deal) affect my refund amount?

Absolutely. Specialized fares have different deposit and penalty rules. To ensure these unique fare conditions are accurately factored into your refund estimate, you must use the specialized input fields on our **Cruise Refund Calculator**.


8. I have a 10-day cruise. Is my penalty schedule different from a 3-day cruise?

Yes, longer cruises always have stricter, earlier deadlines. To see the specific tiered schedule that applies to your 10-day voyage, use the date inputs on our **Cruise Refund Calculator** which adjusts the penalty tiers based on your trip length.


9. How do I quickly figure out if I have a Non-Refundable Deposit (NRD) or a standard deposit?

If you aren’t sure, the easiest way to assess the penalty associated with your deposit is to run the scenario through our **Cruise Refund Calculator**. It instantly identifies the deposit penalty associated with the major fare types for your chosen cruise line.


10. What percentage of the total vacation price is my refund based on?

The refund penalty is based on the **Total Cruise Fare**, which excludes taxes and fees. To get the specific percentage of the total vacation cost that you are eligible to recover, please input your full cost into the fields of our **Cruise Refund Calculator**.

Carnival Faqs



1. Can I cancel my Carnival cruise for any reason?

Yes, but the refund amount depends on the reason. If you cancel for a non-covered reason (like simply changing your mind), the standard penalty policy applies. If you have Carnival Vacation Protection, you can cancel for any reason and receive 75% back in Future Cruise Credit.


2. What is the refund policy for a Carnival cruise?

Carnival’s refund policy is a tiered penalty schedule based on the number of Days Before Departure (DBD). The closer you cancel to sailing, the less cash you receive, with 100% of the fare forfeited if you cancel 14 days or less prior to departure.


3. Is there a fee to reschedule a Carnival cruise?

Yes, usually. If you are changing your date or itinerary, you may face a change fee (often $50 per person for non-refundable fares like Early Saver) in addition to any difference in the new fare price.


4. Can we get a 100% refund while cancelling a ticket?

Only if the cruise line cancels the sailing. If you, the guest, cancel, you can only receive a 100% cash refund if you cancel outside the penalty window (e.g., 91+ days for long cruises) and purchased a fully refundable deposit fare.


5. What is the 3-1-1 rule for a Carnival cruise?

The 3-1-1 rule is a security regulation from the TSA regarding liquids carried in carry-on bags. It requires liquids to be in containers of 3.4 ounces (100 milliliters) or less, carried in 1 quart-sized bag, with 1 bag per passenger. It has no relation to the cancellation policy.


6. Do you lose a deposit if you cancel a Carnival cruise?

Yes, typically. Deposits for popular promotional fares (like Early Saver) are non-refundable and are converted into a Future Cruise Credit (FCC) if you cancel early, usually minus a $50 service fee per person.


7. How to cancel a Carnival cruise online?

You can cancel a Carnival cruise online by logging into your “Manage My Booking” section on the official Carnival website. Locate the “Cancel Reservation” option and follow the prompts. Calling your travel agent or the cruise line is often the most direct method.


8. What is the refund policy for Carnival excursions?

Carnival excursions are generally 100% refundable if canceled online through the “Manage My Booking” portal up to 48 hours before the scheduled arrival time at the port where the excursion takes place.


9. Why would Carnival charge me $200 for canceling?

Carnival likely charged you a flat fee or kept a portion of your deposit (e.g., $50 per person service fee for converting an Early Saver deposit into an FCC) in addition to any initial non-refundable deposit amount, depending on the fare type you purchased.


10. Can I get a refund if I cancel my Carnival cruise within 24 hours of booking?

Yes, for most standard fares. Carnival usually adheres to a 24-hour grace period for corrections. You can often get a full refund within 24 hours of booking unless your cruise departs within 60 days, where stricter rules apply.

ROYAL CARIBBEAN FAQs



1. What is the deadline to cancel a Royal Caribbean cruise without any penalty?

The deadline varies by cruise length: 90 days or more before sailing for 5-14 night cruises, and 75 days or more for 1-4 night cruises. Note that this timeframe only avoids the tiered penalty; Non-Refundable Deposits (NRD) are still forfeited.


2. What is Royal Caribbean’s refund policy on Non-Refundable Deposits (NRD)?

The NRD is not refundable in cash at any time. If you cancel an NRD fare early, the deposit is kept as a penalty. You can, however, change the ship or sail date for a $100 per person change fee instead of canceling entirely.


3. How long does it take to get a cash refund from Royal Caribbean?

Royal Caribbean typically processes cash refunds to the original payment method within 7 to 10 business days after the cancellation is confirmed. It may take an additional 2-3 weeks for the funds to be posted by your bank.


4. What is the biggest penalty for canceling a Royal Caribbean cruise?

The biggest penalty is 100% of the Total Price, which is assessed if you cancel 30 days or less prior to the departure date for any cruise length. This means you receive no refund of the cruise fare.


5. Can I cancel a Royal Caribbean cruise due to a medical emergency and get a full cash refund?

Only if you purchased travel insurance. Royal Caribbean’s standard policy does not offer exceptions for medical reasons. To receive a cash refund for a medical emergency, you must have purchased the **Royal Caribbean Travel Protection Program** (or third-party insurance) prior to the cancellation.


6. If I cancel, do I get my prepaid gratuities and port fees back?

Yes, always. Both **Government Taxes/Fees** and **Prepaid Gratuities** are fully refundable, even if your cancellation occurs within the 100% penalty window. They are returned in cash to the original payment method.


7. Can I cancel my reservation online, or must I call Royal Caribbean?

You can cancel many pre-cruise purchases (like dining or excursions) via the **”My Royal Cruise”** online planner. However, the cruise booking itself often requires contacting your travel advisor or calling Royal Caribbean directly to ensure the cancellation is immediately effective and penalties are correctly calculated.


8. What is the penalty for canceling a short Royal Caribbean cruise (1-4 nights) between 74 and 61 days out?

The penalty for canceling a short 1-4 night cruise in this window is **50% of the total cruise price**, plus the loss of any non-refundable deposit amount.


9. Can I get a full refund if I cancel within 24 hours of booking?

Royal Caribbean does not officially advertise a blanket 24-hour “no penalty” grace period, but they often allow penalty-free changes or cancellations if done **within 24-72 hours of booking** and if the sailing date is still far out (outside of 75-90 days). Confirm with an agent immediately after booking if you need this option.


10. What is the $100 fee for changing my Royal Caribbean cruise date?

The $100 per person fee is the administrative charge to change the sail date and/or ship when you have booked a **Non-Refundable Deposit (NRD)** fare. This fee allows you to save your booking and avoid the full cancellation penalty.


Princess Cruise FAQs


1. What is the deadline to cancel a Princess cruise to avoid the 100% penalty?

For most Princess cruises (1-24 days), the 100% cancellation penalty begins 30 days or less prior to departure (for bookings made March 4, 2024, or after). You must cancel at least **31 days** out to receive any partial refund.


2. Are Princess Cruise deposits refundable by default?

No, not anymore. For bookings made on or after October 15, 2025, Princess Cruises defaults to a Non-Refundable Deposit (NRD). Guests must specifically select and pay a higher fare or deposit fee to secure a refundable option.


3. How long does it take to get a cash refund from Princess Cruises?

Princess Cruises typically processes cash refunds for credit card payments within 10 to 15 business days after the cancellation date. Refunds for onboard account credits issued via check can take longer, usually around **4 to 6 weeks**.


4. What is the penalty for canceling a cruise 70 days before departure?

For a standard 1-24 day Princess cruise, canceling at 70 days before departure incurs a penalty of 50% of the Total Charges (Cruise Fare, Cruisetour, etc.). The 50% penalty window applies between 61 and 74 days before sailing.


5. Can I transfer my Princess booking to a new person to avoid the cancellation fee?

Name changes are usually allowed, but only one original passenger must remain on the booking. Minor corrections are free, but a full transfer of all guests is treated as a cancellation, which triggers the penalty schedule.


6. If I purchased Princess Vacation Protection, can I still get a cash refund?

Yes. If you cancel for a covered reason (e.g., specific medical or family emergencies) under the Princess Vacation Protection plan, you are generally eligible for a 100% cash refund of your penalties and non-refundable costs.


7. If Princess cancels my cruise due to itinerary changes, do I get a refund?

If Princess Cruises cancels your voyage, you are entitled to a choice between a 100% full cash refund of all monies paid or a Future Cruise Credit (FCC), which may include a bonus percentage.


8. Does Princess refund my pre-paid shore excursions and spa treatments?

Yes. Shore excursions, onboard purchases, spa treatments, and specialty dining packages are all 100% refundable if canceled before the non-penalty cutoff (usually 48-72 hours) and are not subject to the cruise fare penalty schedule.


9. What is the penalty window for World Cruises or sailings over 25 days?

For Princess World Cruises and extended sailings, the cancellation deadlines are stricter. The final payment is due 120 days before sailing, and the 100% cancellation penalty starts much earlier, at 60 days or less prior to departure.


10. Does the cancellation fee apply to Government Taxes, Fees, and Port Expenses?

No. Princess Cruises’ cancellation fees are based only on the “Total Charges,” which excludes Government Taxes, Fees, and Port Expenses. These non-fare items are **always fully refundable** in cash, regardless of when you cancel.