Pet Travel Airline Policy Checker

Pet Travel Airline Policy Checker

Check Specific Airline Policies

General International Travel Requirements

European Union (EU)

  • ISO Microchip: Must be implanted BEFORE the rabies vaccination.
  • Rabies Vaccination: Must be administered at least 21 days before arrival.
  • EU Health Certificate: Must be issued by a USDA-accredited vet within 10 days of arrival and endorsed by APHIS.

United Kingdom (UK)

  • ISO Microchip & Rabies Vaccination: Same requirements as the EU.
  • GB Health Certificate: Similar to the EU certificate, required for entry.
  • Tapeworm Treatment (Dogs Only): Must be administered by a vet 1 to 5 days (24-120 hours) before entering the UK.

Canada

  • Proof of Rabies Vaccination: A valid rabies vaccination certificate is required for dogs and cats over 3 months old.
  • Health Certificate: Not always required for personal pets from the USA, but highly recommended.
  • Inspection: Pets may be inspected by the Canada Border Services Agency (CBSA) upon arrival.

Pre-Flight Preparation Checklist

Consult Veterinarian: Discuss travel plans and ensure your pet is fit to fly.
Book Pet Reservation: Contact the airline to book your pet's spot (in-cabin or cargo).
Obtain Health Certificate: Get certificate within the airline's and destination's required timeframe (usually 10 days).
Check Vaccinations & Microchip: Ensure all are up-to-date and meet destination requirements.
Acquire Airline-Approved Carrier: Check dimensions and ensure it's well-ventilated.
Acclimate Pet to Carrier: Leave the carrier open in your home for your pet to get used to it.
Prepare Carrier for Travel: Line with absorbent bedding, attach "Live Animal" stickers, and include food/water dishes.
Day of Travel Meal: Provide a light meal and water 4 hours before the flight.
Exercise Pet: Take your pet for a walk before leaving for the airport.
Arrive Early: Allow extra time for check-in (at least 2-3 hours for domestic flights).

${data.cargo}

Breed Restrictions: ${data.breeds}

Contact Information

For reservations and specific questions, call: ${data.contact}

`; } downloadPdfBtn.addEventListener('click', () => { const { jsPDF } = window.jspdf; const content = document.getElementById('checklist-container'); if (!content) return; html2canvas(content, { scale: 2, backgroundColor: '#ffffff' }).then(canvas => { const imgData = canvas.toDataURL('image/png'); const pdf = new jsPDF({ orientation: 'portrait', unit: 'pt', format: 'a4' }); const pdfWidth = pdf.internal.pageSize.getWidth(); pdf.setFontSize(22); pdf.setTextColor('#059669'); pdf.text('Pet Travel Checklist', pdfWidth / 2, 60, { align: 'center' }); const imgProps = pdf.getImageProperties(imgData); const imgWidth = pdfWidth - 80; const imgHeight = (imgProps.height * imgWidth) / imgProps.width; pdf.addImage(imgData, 'PNG', 40, 100, imgWidth, imgHeight); pdf.save('Pet-Travel-Checklist.pdf'); }); }); });
Scroll to Top