You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Just stumbled upon this project, and I had figured out something similar recently when I was on a flight. Even though this flight didn't have an internet connection, I was still able to scrape some information off of the network about the general position of the plane.
Anyway, I saved the response and thought I would share in case you want to add more airlines. Like I said, this was an Alaska Airlines flight and since it had limited connectivity a lot of the useful information is missing. I gathered this data by making a request to https://wifi.inflightinternet.com/abp/v2/statusTray?fig2=true, which seems to perhaps be reused for other GoGo (now apparently Intelsat?) customers.
Request Response:
{
"Response": {
"status": 200,
"flightInfo": {
"logo": null,
"airlineName": null,
"airlineCode": "ASA",
"airlineCodeIata": null,
"tailNumber": "N552AS",
"flightNumberInfo": null,
"flightNumberAlpha": null,
"flightNumberNumeric": null,
"departureAirportCode": null,
"destinationAirportCode": null,
"departureAirportCodeIata": null,
"destinationAirportCodeIata": null,
"departureAirportLatitude": 0.0,
"destinationAirportLatitude": 0.0,
"departureAirportLongitude": 0.0,
"destinationAirportLongitude": 0.0,
"origin": null,
"destination": null,
"departureCity": null,
"destinationCity": null,
"expectedArrival": null,
"departureTime": null,
"abpVersion": "9.3.0",
"acpuVersion": "4.1.5",
"videoService": false,
"latitude": 41.5364,
"longitude": -110.3362,
"altitude": 27459.67,
"localTime": null,
"utcTime": "2024-09-26T01:50:53.159Z",
"destinationTimeZoneOffset": null,
"hspeed": 547.43604,
"vspeed": -0.022727273
},
"gogoFacts": "The Wright brothers' first flight (120 feet) could have taken place within the economy section of a Boeing 747-400.",
"serviceInfo": {
"service": "Inactive",
"remaining": 0,
"quality": null,
"productCode": null,
"alerts": [
"Gogo is currently unavailable. It could be for any one of the following reasons: your plane has dipped below 10,000 feet, left U.S. airspace, or a network outage has occurred. Please try reconnecting soon."
]
},
"ipAddress": "172.19.207.11",
"macAddress": "REDACTED",
"systemInfo": {
"wapType": "ACWAP",
"systemType": "2KU",
"arincEnabled": "true",
"horizontalVelocity": "547.43604",
"verticalVelocity": "-0.022727273",
"aboveGndLevel": "27459.67",
"aboveSeaLevel": "33983.5",
"flightPhase": "EN_ROUTE",
"flightNo": null,
"timeToLand": null,
"paxSsidStatus": "",
"casSsidStatus": "UP",
"countryCode": "US",
"airportCode": "0",
"linkState": "DOWN",
"linkType": "2KU",
"tunnelState": "DOWN",
"tunnelType": "VTP",
"ifcPaxServiceState": "UP",
"ifcCasServiceState": "UP",
"currentLinkStatusCode": "3000",
"currentLinkStatusDescription": "NOT_AVAILABLE",
"noSubscribedUsers": "0",
"aircraftType": "B738"
},
"device_iid": "REDACTED"
}
}
The text was updated successfully, but these errors were encountered:
Just stumbled upon this project, and I had figured out something similar recently when I was on a flight. Even though this flight didn't have an internet connection, I was still able to scrape some information off of the network about the general position of the plane.
Anyway, I saved the response and thought I would share in case you want to add more airlines. Like I said, this was an Alaska Airlines flight and since it had limited connectivity a lot of the useful information is missing. I gathered this data by making a request to
https://wifi.inflightinternet.com/abp/v2/statusTray?fig2=true
, which seems to perhaps be reused for other GoGo (now apparently Intelsat?) customers.Request Response:
The text was updated successfully, but these errors were encountered: