UberX (Standard)
UberXL (Groups up to 6)
Uber Comfort
Uber Black
Uber Black SUV
*Note: These calculations are estimates based on standard Las Vegas rate cards. Actual fares may vary due to real-time traffic, dynamic pricing, and specific route adjustments.
Understanding Uber Rates in Las Vegas
Navigating Las Vegas using rideshare services like Uber is one of the most convenient ways to get from the Harry Reid International Airport to the Strip, or to move between casinos and downtown. Unlike taxis, which have zoned pricing for the Strip, Uber calculates fares based on a combination of time, distance, base fares, and surcharges. This Uber Rates Las Vegas Calculator helps you estimate your transportation budget before you hail a ride.
Key Components of Your Fare
The total cost of an Uber ride in Las Vegas is determined by several specific factors:
Base Fare: The flat fee charged to start the ride.
Cost Per Mile: A mileage rate charged for every mile traveled.
Cost Per Minute: A time-based rate charged for the duration of the trip.
Booking Fee: A mandatory service fee added to every ride to cover operational costs.
Nevada Recovery Surcharge: A 3% excise tax applied to transportation services in Nevada.
Surge Pricing: During high demand (conventions, concerts, Saturday nights), a multiplier is applied to the base rates.
Airport Surcharges at Harry Reid International (LAS)
If you are being picked up directly from Harry Reid International Airport (formerly McCarran), an airport surcharge applies. This fee is automatically added to your bill and is passed on to the airport authority. Drop-offs at the airport generally do not incur this specific pickup surcharge, though standard distance and time rates apply.
Common Las Vegas Routes & Estimates
While dynamic pricing changes constantly, understanding typical distances can help you verify your estimate:
Airport to Center Strip (Bellagio/Caesars): Approx. 4-6 miles, 15-20 minutes.
Airport to Downtown (Fremont St): Approx. 10-12 miles, 20-25 minutes.
Strip to Downtown: Approx. 4-6 miles, 15-20 minutes depending on traffic.
Uber Service Types Available in Vegas
Las Vegas offers a full range of Uber vehicle classes:
UberX: The standard affordable option for up to 4 riders.
UberXL: SUVs or minivans for groups up to 6 riders or those with extra luggage.
Uber Comfort: Newer cars with more legroom and highly rated drivers.
Uber Black: High-end luxury livery vehicles with professional drivers.
Tips for Saving Money
To avoid high surge pricing, try walking to a nearby hotel pickup zone rather than hailing directly from a crowded event exit. Additionally, scheduling rides in advance can sometimes lock in a price, though it is often more expensive than the standard on-demand rate. Always compare UberX with UberXL if you have a group of 4 with luggage, as a single UberXL is cheaper than two UberX cars.
function calculateUberFare() {
// 1. Get Inputs
var serviceType = document.getElementById('serviceType').value;
var distance = parseFloat(document.getElementById('distanceMiles').value);
var duration = parseFloat(document.getElementById('durationMinutes').value);
var surge = parseFloat(document.getElementById('surgeMultiplier').value);
var isAirport = document.getElementById('airportPickup').checked;
// Validate Numeric Inputs
if (isNaN(distance) || distance < 0) {
alert("Please enter a valid distance in miles.");
return;
}
if (isNaN(duration) || duration < 0) {
alert("Please enter a valid duration in minutes.");
return;
}
if (isNaN(surge) || surge < 1) {
surge = 1.0;
}
// 2. Define Rate Card (Estimated Las Vegas Rates)
// Rates approximate as of general knowledge cutoff, vary by season/regulation
var rates = {
'uberx': {
base: 0.00,
perMile: 1.15,
perMinute: 0.30,
booking: 3.65,
minFare: 7.85
},
'uberxl': {
base: 0.00,
perMile: 2.10,
perMinute: 0.45,
booking: 3.95,
minFare: 10.50
},
'comfort': {
base: 0.00,
perMile: 1.45,
perMinute: 0.40,
booking: 4.00,
minFare: 10.00
},
'black': {
base: 8.00,
perMile: 3.55,
perMinute: 0.90,
booking: 0.00, // Black often has different fee structures, simplified here
minFare: 15.00
},
'blacksuv': {
base: 15.00,
perMile: 4.25,
perMinute: 1.10,
booking: 0.00,
minFare: 25.00
}
};
var selectedRate = rates[serviceType];
var airportFee = 3.00; // Approximate LAS pickup fee
var nevadaTaxRate = 0.03; // 3% excise tax
// 3. Calculate Components
var timeCost = duration * selectedRate.perMinute;
var distCost = distance * selectedRate.perMile;
var baseAndRide = selectedRate.base + timeCost + distCost;
// Apply Surge to the ride cost (usually excludes booking fee/taxes)
var surgedRideCost = baseAndRide * surge;
// Add Fixed Fees
var subtotal = surgedRideCost + selectedRate.booking;
// Add Airport Fee if applicable
var addedAirportFee = isAirport ? airportFee : 0;
subtotal += addedAirportFee;
// Check Minimum Fare (Logic: If calculated total is less than min, bump to min)
// Note: Usually surge applies to base, then we check min.
// If (Surged Cost + Booking) < MinFare, use MinFare.
// However, usually MinFare includes booking fee.
// Let's ensure the subtotal is at least the minimum fare.
if (subtotal < selectedRate.minFare) {
subtotal = selectedRate.minFare;
}
// Calculate Tax (Nevada Transportation Excise Tax)
var tax = subtotal * nevadaTaxRate;
var total = subtotal + tax;
// 4. Output Results
var resultHTML = '
Estimated Fare Breakdown (' + serviceType.toUpperCase() + ')