xeni-app / xeni_travel_api_docs

Repository of information relating to connecting and using Xeni's Travel API.
0 stars 0 forks source link

List of all flights #6

Open canuckasaurus opened 1 year ago

canuckasaurus commented 1 year ago

every day there is a list of flights and their routes.

Can you research and find this information?

RishiMSingh commented 1 year ago

1) Gathering Flight data - Airport & Flight data, Aircraft & airline and positioning status.

https://aviation-docs.spire.com/api/tracking-stream/output
- Can give Flight Analytics and other data points has historical data. 
- This website gives Flight Analytics such as positional information or flights, aircraft data and flight information. 
- Beta version for live flights in a JSON format

2) Airlabs

Monitoring individual flights, display information in their applications and guide users through flight preparation.

https://airlabs.co/docs/flights

Flight tracker api can also give Live Flight tracking information [{ "hex": "780695", "reg_number": "B-5545", "flag": "CN", "lat": 28.397377, "lng": 115.1008, "alt": 7078, "dir": 269, "speed": 775, "v_speed": -7.8, "squawk": "0205", "flight_number": "9429", "flight_icao": "CSH9429", "flight_iata": "FM9429", "dep_icao": "ZSPD", "dep_iata": "PVG", "arr_icao": "ZGHY", "arr_iata": "HNY", "airline_icao": "CSH", "airline_iata": "FM", "aircraft_icao": "B738", "updated": 1626153069, "status": "en-route" }, { ... }]

3) RapidAPI has several different API’s that are useful. There are about 18 api on here for flight information.

4) AviationStack - https://aviationstack.com/

Aviationstack is a realtime Flight Status & Global Aviation API. This includes flight tracker and airport timetable data web service trusted by 5000 + companies.

5) Aviation Edge - https://aviation-edge.com/premium-api/

Ranges up to 79 dollars with 500.000 calls per month

⁃ Development support ⁃ Flight Tracker API ⁃ Real-time Schedules API ⁃ Historical Schedules API ⁃ Future Schedules API ⁃ Airline Routes API ⁃ Nearby API ⁃ Autocomplete API ⁃ Satellite Tracker API ⁃ 8 other API systems ⁃ SLA ⁃ 24/7 Support

Other Sources of information:

Flight tracking ⁃ Flight trader shows flights in current and positioning in Realtime -> https://mobile.flightradar24.com/18.08,77.39/6 ⁃ This does not have an API but has good visualizations

RishiMSingh commented 1 year ago

List of all airlines can be found here -> https://www.wego.com/airlines -> can use web scraping and tools like selenium to scrape the web and extract names of airlines.

canuckasaurus commented 1 year ago

Will get you a scraping framework in place ASAP -- then you just write the scrapers.