LAX Official Site | Search Flights, Arrivals, Departures & Connections (2024)

  • All
  • Domestic
  • International

Flight Schedule

* These flights are operated by a partner airline.

Sorry!

Our flight schedule and real-time flight information provider is having technical difficulties. We apologize for the inconvenience. Please try later.


"); } }, { name: "City", title: "Destination", align: "center", type: "text", itemTemplate: function (val, item) { var formattedCity = ''; if (item.City == null) { return $("

") .append('Not Available'); } else { return $("

") .css("font-weight", "bold") .append(item.City); } }, }, { name: "Timestamp", title: "Sched. Departure", align: "center", type: "number", itemTemplate: function (val, item) { var $label = $("

").attr("id", "timeformat"); if (item.TimeWithFormat == null) { return $label.append('N/A'); } var timeFormat = moment(item.TimeWithFormat, 'MM/DD/YYYY hh:mm:ss a').format("DD MMM h:mm A"); //var dateFormat = moment(item.TimeWithFormat,'MM/DD/YYYY hh:mm:ss').format("DD MMM"); return $label.append(timeFormat).append("

"); } }, { name: "Remarks", title: "Status", align: "center", itemTemplate: function (val, item) { var delayed = 'delayed'; var cancelled = 'cancelled'; var firstPart,secondPart; if(val.indexOf(':') >=0){ var itemsArray = val.split(" ") firstPart = itemsArray[0]; secondPart= moment(itemsArray[1], 'hh:mm').format("h:mm A"); }else{ firstPart = val; secondPart=''; } if ((val.toLowerCase().indexOf(delayed) != -1) || (val.toLowerCase().indexOf(cancelled) != -1) ) { return $("

").attr("id", "divRemarks").attr('style', "color:red").append(firstPart).append(" ").append(secondPart).append("

"); } else { return $("

").attr("id", "divRemarks").attr('style', "color:green").append(firstPart).append(" ").append(secondPart).append("

"); } }, align: "center" }, ] }); var field = $("#sortingField").val(); $("#jsGrid").jsGrid("sort", "Flight"); $('#btnTextSearch').on('click', function (e) { GetSearchItems(); }); $('#imgClear').on('click', function (e) { ClearFilters(); }); $('#btnClearFilters').on('click', function (e) { ClearFilters(); }); $('#btnRefresh').on('click', function (e) { ClearFilters(); }); $('#ddlAirlines').on('change', function (e) { GetSearchItems(); }); var filter = new Object(); $('#ddlTerminal').on('change', function (e) { GetSearchItems(); }); $('#btnDeparture').on('click', function (e) { console.log("departure click"); var fn = ""; var txtSearchCode = $('#txtFlightnbr').val(); if (txtSearchCode != '') { fn = "&fn=" + txtSearchCode; } console.log("departures url:" + window.location.pathname + "?type=dep" + fn); window.location.href = window.location.pathname + "?type=dep" + fn; /*if (window.location.href.indexOf('?') > -1) { console.log("departur url:" + window.location.pathname + "?type=dep"); var fn = ""; var txtSearchCode = $('#txtFlightnbr').val(); if (txtSearchCode != '') { fn = "&fn=" + txtSearchCode; } window.location.href = window.location.href + "&type=dep" + fn; }*/ }); $('#btnArrival').on('click', function (e) { console.log("arrival click"); var fn = ""; var txtSearchCode = $('#txtFlightnbr').val(); if (txtSearchCode != '') { fn = "&fn=" + txtSearchCode; } console.log("arrival url:" + window.location.pathname + "?type=arr" + fn); window.location.href = window.location.pathname + "?type=arr" + fn; /*if (window.location.href.indexOf('?') > -1) { console.log("arrival url:" + window.location.pathname + "?type=arr"); var fn = ""; var txtSearchCode = $('#txtFlightnbr').val(); if (txtSearchCode != '') { fn = "&fn=" + txtSearchCode; } window.location.href = window.location.pathname + "?type=arr" + fn; }*/ }); $('#txtFlightDate').on('change', function (e) { if (window.location.href.indexOf('?') > -1) { var date = GetParameterValues('date'); var type = GetParameterValues('type'); if (date == '' || date == undefined) { window.location.href = window.location.href + "&date=" + $('#txtFlightDate').val(); } else { window.location.href = location.href.replace("date=" + date, "date=" + $('#txtFlightDate').val()); } } }); $('#txtFlightnbr').on('keypress', function (e) { if (e.keyCode == 13) { GetSearchItems(); } }); var selectedTerminal = getUrlParameter('terminal'); if (selectedTerminal != null || selectedTerminal != undefined || selectedTerminal != '') { selectedTerminal = selectedTerminal.toUpperCase().trim(); var selectedTerminalOptions = $('#ddlTerminal option').filter(function () { if (selectedTerminal.indexOf("TBIT") > -1 || selectedTerminal.indexOf("B") > -1) return this.value.toUpperCase().indexOf("TBIT") > -1; else return this.value.toUpperCase() === selectedTerminal || this.text.toUpperCase() === selectedTerminal; } ) if (selectedTerminalOptions != null || selectedTerminalOptions != undefined || selectedTerminalOptions != '') { selectedTerminalOptions.first().prop("selected", true); } else { console.log("Bad Terminal: " + selectedTerminal); } } var selectedAirline = getUrlParameter('airline'); if (selectedAirline != null || selectedAirline != undefined || selectedAirline != '') { selectedAirline = selectedAirline.toUpperCase().trim(); var selectedAirlineOptions = $('#ddlAirlines option').filter( function () { return this.value.toUpperCase() === selectedAirline || ( selectedAirline.length >= 3 && this.text.toUpperCase().startsWith(selectedAirline) === true ); } ) if (selectedAirlineOptions != null || selectedAirlineOptions != undefined || selectedAirlineOptions != '') { selectedAirlineOptions.first().prop("selected", true); } else { console.log("Bad Airline: " + selectedAirline); } } function getDateMMDDYYYY(fullDate) { var twoDigitMonth = ((fullDate.getMonth().toString().length) == 1) ? '0' + (fullDate.getMonth() + 1) : (fullDate.getMonth() + 1); var twoDigitDate = ((fullDate.getDate().toString().length) == 1) ? '0' + (fullDate.getDate()) : (fullDate.getDate()); date = twoDigitMonth + "/" + twoDigitDate + "/" + fullDate.getFullYear(); return date; } function GetParameterValues(param) { var url = window.location.href.slice(window.location.href.indexOf('?') + 1).split('&'); for (var i = 0; i < url.length; i++) { var urlparam = url[i].split('='); if (urlparam[0] == param) { return urlparam[1]; } } } }); function ClearFilters() { window.location.href = window.location.pathname + "?type=dep"; } function GetSearchItems() { var objSearch = new Object(); var airlineCode = $('#ddlAirlines').val(); if (airlineCode != '') { objSearch.AirlineCode = airlineCode; } var txtSearchCode = $('#txtFlightnbr').val(); if (txtSearchCode != '') { objSearch.Flight = txtSearchCode.toUpperCase(); } var terminal = $('#ddlTerminal').val(); if (terminal != '') { objSearch.Terminal = terminal; } var li = $('ul.uldomestic li').filter(function () { return $(this).attr('class') === 'active'; }); var flightType = li.attr('val'); if("US" == flightType){ objSearch.IsDomestic = 'True'; } else if ("Non-US" == flightType){ objSearch.IsDomestic = 'False'; } else { objSearch.IsDomestic = ''; } $("#jsGrid").jsGrid("loadData",objSearch ).done(function () { $('#divReload').show(); $('#preloader').hide(); }); $("#jsGrid").jsGrid("openPage", 1); } $(window).bind("load", function () { $('#divReload').hide(); $.get('/Flight/SearchResult',{'reqType':'dep','date':''}).done(function(responseText){ db = responseText; $('#apiurl').val(responseText[0].APIGeneratedurl); $("#flightDataBetwenDateTime").html("Data Between: " + responseText[0].TimeWithFormat + " - " + responseText[responseText.length - 1].TimeWithFormat); $("#lastUpdatedTime").html("Data Last Updated: " + responseText[0].FlightDataCreatedDt); $('#datasource').html("Datasource: " + responseText[0].FlightDataSource); GetSearchItems(); }) .fail(function (xhr, status, error) { console.log(xhr.responseText); $('#alertpopup').modal('show'); $('#preloader').hide(); }); }); function getUrlParameter(name) { name = name.replace(/[\[]/, "\\[").replace(/[\]]/, "\\]"); var regex = new RegExp("[\\?&]" + name + "=([^]*)"), results = regex.exec(location.search); return results === null ? "" : decodeURIComponent(results[1].replace(/\+/g, " ")); }

LAX Official Site | Search Flights, Arrivals, Departures & Connections (2024)

FAQs

Is there a problem at LAX right now? ›

General Departure Delays: Traffic is experiencing gate hold and taxi delays lasting 15 minutes or less.

Where is the easiest place to get picked up at LAX? ›

Picked-up or Dropped-off by Family/Friends

Passengers can be dropped off at in the terminals on the upper level/departures area. Picking Up: Passengers may be picked up on the outer curb on the lower level/arrivals level outside of baggage claim.

What terminal is Aeromexico at LAX arrivals? ›

Aeromexico (Check-in at Terminal 3 - will be bused to Terminal B - Arrivals at Terminal B) Allegiant Air (Check-in at Terminal 1 - will be bused to Terminal B)

What terminal is JetBlue at LAX arrivals? ›

Terminal 5 is the new home for JetBlue and Spirit, as well some American Airlines flights and the bus to the American Eagle terminal.

What is the TSA wait time at LAX? ›

Currently, the estimated LAX TSA wait time is 13 minutes which can change based on the passenger volume.

How long to wait at LAX? ›

Current Wait Times: The good news is, as of June 17th, 2024, the average wait time at LAX security checkpoints is around 13 minutes [source: TSA Wait Times At LAX - 06/17/2024 - Way]. Time of Day: This can significantly impact wait times. Early mornings (around 5 am) and late evenings (after 9 pm) tend to be less busy.

Where to wait for arrivals at LAX? ›

LAX has two Cell Phone Waiting Lots where motorists meeting arriving passengers can wait for free, up to two hours, until passengers are ready to be picked up in the Central Terminal Area. The Original Cell Phone Waiting Lot is located at the Northwest corner of 96th Street and Vicksburg Avenue.

Can you walk between terminals at LAX? ›

There are nine passenger terminals at LAX, connected by a U-shaped, two-level roadway. Inter-terminal connections between Tom Bradley and Terminals 4-8 are all connected by walkway, allowing connecting passengers to access the above-mentioned terminals without having to re-clear security.

How much is an Uber to LAX? ›

Uber: Request a ride using Uber to transport you to Los Angeles International Airport (LAX). The journey will take approximately 30 minutes, covering a distance of about 13 miles, and will cost around $35.

What does Terminal B stand for at LAX? ›

About the Tom Bradley International Terminal. (Terminal B) The Tom Bradley International Terminal welcomes millions of visitors from around the world each year. In 2013, a $1.9 billion modernization was unveiled, creating a world-class experience for all those who pass through it.

What level of LAX is arrivals? ›

Flight departures are on the upper level, and arrivals are on the lower level. There are 9 terminals in total, numbered 1 through 8, the Regional Terminal, and Terminal B (Tom Bradley International Terminal). Terminal 2 still operates, technically, but the gates 20 to 28 have been absorbed into Terminal 3.

Are Delta and Aeromexico in the same terminal in LAX? ›

Delta and Aeromexico check-in and departures are from Terminal 3.

What terminal is United at LAX Arrivals? ›

United Airlines — Terminal 7, Los Angeles International Airport (LAX)

What terminal is Southwest LAX Arrivals? ›

Gates 9–18B in Terminal 1 are used by Southwest Airlines (except for foreign arrivals). In addition, there are restaurants and cafes located in the food court on the Departure Level of Terminal 1.

What terminal is JetBlue in LAX? ›

Terminal 5 is the new home for JetBlue and Spirit, as well some American Airlines flights and the bus to the American Eagle terminal.

Why are planes in LAX taking off East? ›

Rarely, weather conditions will require LAX to shift into “Easterly Operations,” with planes arriving from over the ocean and taking off toward the east. This happens most often during winter storms, when the wind direction shifts.

Is LAX ever closed? ›

LAX Hours of Operation and Access

Entry to LAX is only allowed for airline passengers and persons meeting, accompanying or assisting them, and airport personnel whose employment requires their presence. LAX is closed to the general public 24 hours a day, 7 days a week.

Is there a flight curfew at LAX? ›

From midnight to 6:30 a.m., all aircraft arriving at LAX must approach from over the ocean, unless FAA Air Traffic Control determines that weather or airport/air traffic operational conditions make it unsafe for such operations.

Does LAX require COVID test? ›

The latest guidelines can be found at the DHS website and CDC website. As of June 12, 2022, the CDC will no longer require air passengers traveling from a foreign country to the United States to show a negative COVID-19 viral test or documentation of recovery from COVID-19 before they board their flight.

References

Top Articles
Latest Posts
Recommended Articles
Article information

Author: Terrell Hackett

Last Updated:

Views: 6326

Rating: 4.1 / 5 (52 voted)

Reviews: 91% of readers found this page helpful

Author information

Name: Terrell Hackett

Birthday: 1992-03-17

Address: Suite 453 459 Gibson Squares, East Adriane, AK 71925-5692

Phone: +21811810803470

Job: Chief Representative

Hobby: Board games, Rock climbing, Ghost hunting, Origami, Kabaddi, Mushroom hunting, Gaming

Introduction: My name is Terrell Hackett, I am a gleaming, brainy, courageous, helpful, healthy, cooperative, graceful person who loves writing and wants to share my knowledge and understanding with you.