Flying from?
Your search did not result in any matches. Please try again.
Belfast BFS
Your search did not result in any matches. Please try again.
'+ item.country +'
'; result += '
'; result += ''; return result; }, onSelect: function(e, term, item){ var city = item.getAttribute('data-city'); var iata = item.getAttribute('data-iata'); var airport = item.getAttribute('data-airport'); var hasRoute = item.getAttribute('data-has-route'); if(hasRoute == 1) { closeSearchBox(); location.href = '/' + iata + '-' + $iataTo; return; } $iataFrom = iata; var fromText = document.getElementById('search-from-text'); var innerText = '' + city + ' ' + iata; fromText.innerHTML = innerText; closeSearchBox(); openSearchTo(); //getSearchToResults(iata); } }); leftAC.onInit();/* Right search autocompletee */ var rightAC = new autoComplete({ selector: 'input[name="searchToInput"]', minChars: 0, cache: false, inititems: $initsearchTo, source: function(term, suggest){ $errorTo.style.display = 'none'; $searchToSpin.style.display = 'inline-block'; if (window.controller) { window.controller.abort() } window.controller = new AbortController() window.signal = window.controller.signal if( term == '' ) { $keyword = 'nosearchdone'; var url = '/api/airports/' + $keyword + '/' + $iataFrom + '?preview=1'; } else { var url = '/api/airports/' + term + '/' + $iataFrom + '?preview=1'; } fetch(url, { method: 'get', signal: signal }) .then( response => response.json() ) .then( data => { if( data.response.airports.length == 0 ) { $errorTo.style.display = 'block'; } var matches = []; for (i = 0; i < data.response.airports.length; i++) { matches.push( data.response.airports[i] ); } // // FlightRoutes // // If there is connection flights // if( data.response.airports.length == 0 && data.response.flightroutes.length != 0 && data.response.flightroutes.length ) { var $match = {onlytext: 1}; matches.push( $match ); for (i = 0; i < data.response.flightroutes.length; i++) { // matches.push( data.response.flightroutes[i] ); } } else { console.log("Inga flightroutes rutter hittades heller"); } let airportsAmount = 0; if(data.response.airports && data.response.flightroutes) { airportsAmount = data.response.airports.length + data.response.flightroutes.length; } else if(data.response.airports){ airportsAmount = data.response.airports.length } if(airportsAmount === 1) { if(data.response.airports.length > 0) { matches.push({partner: 1, city_name: data.response.airports[0].city_name, IATA: data.response.airports[0].IATA, name: data.response.airports[0].name, country_code: data.response.airports[0].country_code, country: data.response.airports[0].country}); } else if(data.response.flightroutes.length > 0) { matches.push({partner: 1, city_name: data.response.flightroutes[0].city_name, IATA: data.response.flightroutes[0].IATA, name: data.response.flightroutes[0].name, country_code: data.response.flightroutes[0].country_code, country: data.response.flightroutes[0].country}); } } suggest(matches); $searchToSpin.style.display = 'none'; }) .catch((err) => { console.log(err); //$searchToSpin.style.display = 'none'; }); }, renderItem: function( item, search ) { if( item.onlytext == 1 ) { var result = 'Your searches did not result in any direct flight matches. Maybe you want to fly with stops instead?
'; } else if( item.is_connection == 1) { var result = ''; result += '
'; result += '
'+ item.IATA +' '+ item.city_name +' with stops
'; if( typeof item.country_code !== "undefined" && item.country_code != '' ) { result += '
'+ item.country +'
'; } else { result += '
' + item.country + '
'; } result += '
'; result += '
'; result += '
'; result += ''; result += '
'; result += '
'; result += '
'; result += '
Cheap flights to '+ item.IATA +' '+ item.city_name +'
'; result += '
'; result += '
'; result += '
'; if( typeof item.country_code !== "undefined" && item.country_code != '' ) { result += '
'+ item.country +'
'; } else { result += '
' + item.country + '
'; } result += 'Recommended partners'; result += '
'; result += '
'; } else { var result = '
'; } result += '
'; result += '
'+ item.IATA +' '+ item.city_name +'
'; if( typeof item.country_code !== "undefined" && item.country_code != '' ) { result += '
'+ item.country +'
'; } else { result += '
' + item.country + '
'; } result += '
'; result += '
'; result += 'Route info'; result += '
'; result += '
'; } return result; }, onSelect: function(e, term, item){ var city = item.getAttribute('data-city'); var iata = item.getAttribute('data-iata'); var airport = item.getAttribute('data-airport'); var showall = item.getAttribute('data-showall'); $iataTo = iata; var flightroutes = item.getAttribute('data-flightroutes'); var partner = item.getAttribute('data-partner'); var fromText = document.getElementById('search-to-text'); var innerText = '' + city + ' ' + iata; fromText.innerHTML = innerText; closeSearchBox(); // Is this a connection flight? if( flightroutes == 1 ) { var url = '/fr/' + encodeURIComponent( $iataFrom + '-' + $iataTo ); //window.location.href = url; window.open( url, '_blank' ); return false; } if(partner == 1) { openCalendar2(e) document.getElementById('from2').value = $iataFrom; document.getElementById('to2').value = $iataTo; document.getElementById('from-ad').innerHTML = $iataFrom; document.getElementById('to-ad').innerHTML = $iataTo; return false; } if (typeof showall == "string" && showall.length) { window.location.href = '/' + $iataFrom; } else { window.location.href = '/' + $iataFrom + '-' + $iataTo; } } }); rightAC.onInit(); function closeSearchBox() { $searchFromOverlay.style.display = 'none'; $searchToOverlay.style.display = 'none'; hideOverlay(); } $searchFrom.addEventListener("click", function() { $searchFromOverlay.style.display = 'block'; $searchToOverlay.style.display = 'none'; $searchFromInput.focus(); showOverlay(); }); $searchTo.addEventListener("click", function() { $searchFromOverlay.style.display = 'none'; $searchToOverlay.style.display = 'block'; $searchToInput.focus(); showOverlay(); }); function openSearchTo() { $searchFromOverlay.style.display = 'none'; $searchToOverlay.style.display = 'block'; $searchToInput.focus(); showOverlay(); } function getSearchToResults(iata) { rightAC.onClearSuggest(); // Hämta in närliggande flygplatser här $searchToSpin.style.display = 'inline-block'; var url = '/apidestinations/' + iata//$iataFrom; const ms = Date.now(); var myHeaders = new Headers(); myHeaders.append('Pragma', 'no-cache'); myHeaders.append('Cache-Control', 'no-cache'); var myInit = { method: 'GET', headers: myHeaders, }; var myRequest = new Request(url + "?noc=" + ms); /* fetch(url, { headers: { 'Cache-Control': 'no-cache' } }) */ fetch(myRequest, myInit) .then( response => response.json() ) .then( data => { $initsearchTo = data; rightAC.onSuggest( data ); $searchToSpin.style.display = 'none'; }) .catch((err) => { console.log(err); }); } $siteOverlay.addEventListener("click", function() { $searchFromOverlay.style.display = 'none'; $searchToOverlay.style.display = 'none'; hideOverlay(); }); function showOverlay() { $siteOverlay.style.display = 'block'; $siteOverlay.style.left = '0px'; $siteOverlay.style.right = '0px'; $siteOverlay.style.top = '0px'; $siteOverlay.style.bottom = '0px'; $siteOverlay.style.width = '100%'; $siteOverlay.style.height = '100%'; } function hideOverlay() { $siteOverlay.style.display = 'none'; $siteOverlay.style.left = 'auto'; $siteOverlay.style.right = 'auto'; $siteOverlay.style.top = 'auto'; $siteOverlay.style.bottom = 'auto'; $siteOverlay.style.width = '0px'; $siteOverlay.style.height = '0px'; }
- Search direct flight
- Top countries
- U.S airports
- Aviation terms glossary
- About us
Aldergrove Airport is a medium sized airport in United Kingdom. In total there are 64 airports with direct flights to Belfast from United Kingdom and 23 other countries. The airport is a focus city for Ryanair (Operating base.) and Jet2 (Operating base. ).
Click to open the interactive map.
Non-stop routes to BFS:
Duration
From {{ index }}
{{ minutesToTime(route.common_duration) }}
New route New airline With {{ route.airlines[0].carrier_name }} With {{ route.airlines[0].carrier_name }} or {{ route.airlines[1].carrier_name }} With {{ route.airlines[0].carrier_name }}, {{ route.airlines[1].carrier_name }} or {{ route.airlines[2].carrier_name }} With {{ route.airlines[0].carrier_name }}, {{ route.airlines[1].carrier_name }} + {{ route.airlines.length - 2 }} airlines
{{ route.badges.lastflight.message }}
{{ day }}
{{ route.flights_per_day }} per day
{{ route.badges.firstflight.message }}
{{ route.badges.lastflight.message }}
{{ day.substring(0, 1) }}
New route New airline With {{ route.airlines[0].carrier_name }} With {{ route.airlines[0].carrier_name }} or {{ route.airlines[1].carrier_name }} With {{ route.airlines[0].carrier_name }}, {{ route.airlines[1].carrier_name }} or {{ route.airlines[2].carrier_name }} With {{ route.airlines[0].carrier_name }}, {{ route.airlines[1].carrier_name }} + {{ route.airlines.length - 2 }} airlines
{{ route.flights_per_day }} per day
{{ route.badges.firstflight.message }}
Weekday-labels: HAS FLIGHTS UPCOMING NO FLIGHTS
No direct flights found. Try clear all filters.
Ad
Ad
Ad
{{ minutesToTime(route.common_duration) }}
With {{ route.airlines[0].carrier_name }} With {{ route.airlines[0].carrier_name }} or {{ route.airlines[1].carrier_name }} With {{ route.airlines[0].carrier_name }}, {{ route.airlines[1].carrier_name }} or {{ route.airlines[2].carrier_name }} With {{ route.airlines[0].carrier_name }}, {{ route.airlines[1].carrier_name }} + {{ route.airlines.length - 2 }} airlines
{{ route.badges.lastflight.message }}
{{ day }}
{{ route.flights_per_day }} per day
{{ route.badges.firstflight.message }}
{{ route.badges.lastflight.message }}
{{ day.substring(0, 1) }}
With {{ route.airlines[0].carrier_name }} With {{ route.airlines[0].carrier_name }} or {{ route.airlines[1].carrier_name }} With {{ route.airlines[0].carrier_name }}, {{ route.airlines[1].carrier_name }} or {{ route.airlines[2].carrier_name }} With {{ route.airlines[0].carrier_name }}, {{ route.airlines[1].carrier_name }} + {{ route.airlines.length - 2 }} airlines
{{ route.flights_per_day }} per day
{{ route.badges.firstflight.message }}
Weekday-labels: HAS FLIGHTS UPCOMING NO FLIGHTS
Ad
Show flights from Belfast instead?
Cheap flights to BelfastAd
No, there are no directflights to Belfast from the US so you'll need to find a flight with connection instead..
There are 5 airlines with direct flights to Belfast. easyJet, Ryanair UK and Jet2 are the most popular ones.
The IATA code is BFS and the ICAO code is EGAA.
Depends where you are flying from. It takes 8h 35min from Cancun (CUN) and 45min from Glasgow (GLA).
There are 2 airports in Belfast with scheduled flights.
The airport with the most scheduled flights is Aldergrove Airport (BFS).
It depends on where and when you are flying. The average one-way ticket price according to our data is $97.
Direct flights to other airports in Belfast
City (BHD) Flights from 21 different airportsDirect flights to United Kingdom
Heathrow (LHR) Flights from 217 different airports Gatwick (LGW) Flights from 203 different airports Stansted (STN) Flights from 199 different airports Manchester Airport (MAN) Flights from 188 different airports Edinburgh Airport (EDI) Flights from 161 different airports Birmingham Airport (BHX) Flights from 129 different airports Luton (LTN) Flights from 127 different airports Bristol Airport (BRS) Flights from 115 different airports Glasgow International Airport (GLA) Flights from 82 different airports Leeds Bradford (LBA) Flights from 76 different airportsAd
Flight map
One-way
1 adult
-
+
1 adults
-
+
0 children
Economy
CHECK PRICES

Show routeCheck price
` } else if(route.is_active === 0) { divs += "Direct route ended in " + formatDate(route.last_flight); divs += `
Check price
` } modalhtml.innerHTML = divs let modalAirlines = bootstrap.Modal.getOrCreateInstance(document.getElementById('flight-modal-airlines')) modalAirlines.show() } }) } createApp({ data() { return { routes: [{"id":14208,"iata_from":"EDI","iata_to":"BFS","day1":"yes","day2":"yes","day3":"yes","day4":"yes","day5":"yes","day6":"yes","day7":"yes","first_flight":"2023-03-26","last_flight":"2027-04-09","class_first":0,"class_business":0,"class_economy":1,"common_duration":50,"min_duration":50,"max_duration":55,"is_new":0,"is_active":1,"passengers_per_day":0,"flights_per_week":40,"flights_per_day":"3-7 flights","airportTo":{"id":5291,"city_id":"993135","dest_id":-2589607,"dest_type":"city","language_code":"en","city_name":"Belfast","city_name_en":"Belfast","local_name":null,"speak_name":null,"country":"United Kingdom","is_schengen":0,"is_multiairport":0,"state_code":null,"state_name":null,"display_name":"Belfast (BFS), United Kingdom","has_city":0,"IATA":"BFS","ICAO":"EGAA","fs_id":"BFS","timezone":"Europe\/London","elevation":267,"name":"Aldergrove Airport","prio":2,"prio2":0,"prio3":0,"ui_display_name":"Belfast","ui_display_name_in_text_field":"Belfast (BFS)","slug":"aldergrove","url_slug":null,"viator_url":"https:\/\/www.viator.com\/Belfast\/d738-ttd?pid=P00089820&mcid=42383&medium=link","viator_id":"738","viator_urlname":"Belfast","latitude":"54.662397","longitude":"-6.217616","country_code":"GB","continent":"EU","no_routes":64,"no_routes_airlines":103,"wiki_url":null,"classification":3,"text_generated":"
Aldergrove Airport (BFS) is a mid-sized airport based in Belfast, United Kingdom. You can fly to 64 destinations with 5 airlines in scheduled passenger traffic. <\/p>