Interactive Guide: Arriving at Tan Son Nhat Airport (SGN) https://cdn.tailwindcss.com body { font-family: ‘Inter’, sans-serif; } .timeline-step { transition: all 0.3s ease; } .timeline-line { background-color: #d1d5db; } .timeline-line.expedited { background-color: #14b8a6; } .timeline-icon { transition: all 0.3s ease; box-shadow: 0 0 0 4px #fff; } .tab.active { border-bottom: 2px solid #0f766e; color: #0f766e; font-weight: 600; } .tab-content { display: none; } .tab-content.active { display: block; } /* Custom animation for gentle fade-in */ @keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } } .fade-in { animation: fadeIn 0.5s ease-out forwards; }

An Interactive Guide to SGN Airport Arrival

Your personalized, step-by-step guide for a smooth entry into Ho Chi Minh City.

Start Here: What is your visa status?

Select your traveler type to see your personalized arrival process.

Essential Arrival Information

Key details about the airport and what to prepare for a smooth arrival, regardless of your visa type.

Pre-Arrival Checklist

  • Passport: At least 6 months validity remaining.
  • Visa Documents: Printed E-visa, or VOA form/photos/cash.
  • Accommodation Details: Address and contact info for your first night.
  • Currency: USD or VND cash for visa fees and initial expenses.
  • Customs Awareness: Know the rules for what you can bring into Vietnam.

About SGN Terminals

Tan Son Nhat Airport has three main terminals. Knowing which one you’ll use is key for a smooth arrival and departure.

  • Terminal 2 (T2): All international arrivals and departures happen here. This is where you will land.
  • Terminal 1 (T1): Serves most domestic airlines (Bamboo, Vietravel, etc.).
  • Terminal 3 (T3): A new terminal for domestic flights by Vietnam Airlines and Vietjet.

T1 and T2 are a 5-minute walk apart. A free shuttle bus connects to T3.

Getting to the City Center

The airport is about 6-8km from District 1. You have several reliable options:

  • Taxis: Use official companies like Vinasun or Mai Linh. Insist on using the meter.
  • Ride-Hailing Apps: Grab or Be are popular, affordable, and have designated pickup areas.
  • Public Bus: The most economical choice. Routes 109 and 152 go to the city center.
  • Private Transfers: Pre-book for maximum convenience, especially for groups.

Booking & Reliability

Booking the Expedited Entry Service is simple and secure. We are a trusted provider with a long history of excellent service.

📅
Over 15 Years of Experience

Operational since 2008, providing expert immigration assistance.

💰
100% Money-Back Guarantee

Our commitment to providing the service as promised.

🔒
Secure Payments via PayPal

Your financial information is protected with PayPal’s Buyer Protection.

Book on VietnamImmigration.org
const timelineContainer = document.getElementById(‘timeline-container’); const processDisplay = document.getElementById(‘process-display’); const processTitle = document.getElementById(‘process-title’); const processIntro = document.getElementById(‘process-intro’); const voaSpecificBenefits = document.getElementById(‘voa-specific-benefits’); const steps = { disembark: { title: “Disembark Aircraft”, description: “Follow the signs towards the immigration hall.” }, voaCounter: { title: “Visa-on-Arrival Counter”, description: “Submit your NA1 form, photo, and cash fee to get your visa sticker. This step often has long queues.” }, immigration: { title: “Immigration Checkpoint”, description: “Present your passport and visa/e-visa to the officer. Queues here can be significant.” }, baggage: { title: “Baggage Claim”, description: “Collect your checked luggage from the designated carousel.” }, customs: { title: “Customs Check”, description: “Proceed through the green channel if you have nothing to declare, or the red channel if you do.” }, exit: { title: “Exit Airport”, description: “Welcome to Vietnam! Find your transportation in the arrivals hall.” } }; const processes = { evisa: { title: “Arrival Process for E-visa & Visa-Free Visitors”, intro: “As an e-visa holder or visa-free visitor, your path is direct. Below is your standard arrival process compared with the Expedited Entry Service.”, sequence: [‘disembark’, ‘immigration’, ‘baggage’, ‘customs’, ‘exit’], expeditedPoints: [‘immigration’] }, voa: { title: “Arrival Process for Visa-on-Arrival Holders”, intro: “As a visa-on-arrival holder, you have an extra step at the airport. See how the Expedited Entry Service streamlines this entire process.”, sequence: [‘disembark’, ‘voaCounter’, ‘immigration’, ‘baggage’, ‘customs’, ‘exit’], expeditedPoints: [‘voaCounter’, ‘immigration’] } }; function showProcess(type) { const selectedProcess = processes[type]; processTitle.textContent = selectedProcess.title; processIntro.textContent = selectedProcess.intro; timelineContainer.innerHTML = ”; selectedProcess.sequence.forEach((stepKey, index) => { const step = steps[stepKey]; const isExpedited = selectedProcess.expeditedPoints.includes(stepKey); let stepHtml = `

${index + 1}. ${step.title}

${step.description}

${isExpedited ? `
⚡️ EXPEDITED

${stepKey === ‘voaCounter’ ? ‘Our staff handles the entire visa process for you.’ : ”} ${stepKey === ‘immigration’ ? ‘You are escorted through the priority lane, bypassing the main queue.’ : ”}

` : `

Standard procedure

`}
${index < selectedProcess.sequence.length – 1 ? '
‘ : ”}
`; timelineContainer.innerHTML += stepHtml; }); if (type === ‘voa’) { voaSpecificBenefits.style.display = ‘block’; } else { voaSpecificBenefits.style.display = ‘none’; } processDisplay.style.display = ‘block’; document.getElementById(‘process-display’).scrollIntoView({ behavior: ‘smooth’, block: ‘start’ }); } function switchTab(event, tabName) { const tabContents = document.querySelectorAll(‘.tab-content’); tabContents.forEach(content => content.classList.remove(‘active’)); const tabs = document.querySelectorAll(‘.tab’); tabs.forEach(tab => tab.classList.remove(‘active’)); document.getElementById(tabName).classList.add(‘active’); event.currentTarget.classList.add(‘active’); }
evisa.vn Avatar

Published by