Catalog/data-flight-live

Data

Live flight position (OpenSky) API

Looks up an aircraft by callsign or ICAO24 hex on the keyless OpenSky Network and normalizes its raw positional-array state vector into a clean record: live latitude/longitude, barometric & geometric altitude (with feet), ground speed (with knots), heading and compass direction, vertical rate, squawk, origin country and on-ground flag. The value-add: parsing OpenSky's untyped index-based array format an LLM can't reliably decode. Answers 'where is flight X', 'live position of this aircraft', 'altitude and speed of this callsign', 'is this plane on the ground'.

Price$0.01per request
MethodPOST
Route/v1/data/flight-live
StatusLive
MIME typeapplication/json
Rate limit60/minute
Cache3600s public
dataflightaircraftopenskyadsblive-trackingcallsignaviation
API URLhttps://x402.hexl.dev/v1/data/flight-live
Integration docs
Example request
{
  "icao24": "4ca7b6"
}
Example response
{
  "query": {
    "callsign": null,
    "icao24": "4ca7b6"
  },
  "found": false,
  "flight": null
}
Input schema
{
  "type": "object",
  "required": [],
  "properties": {
    "callsign": {
      "type": "string",
      "examples": [
        "RYR1234",
        "UAL1"
      ]
    },
    "icao24": {
      "type": "string",
      "examples": [
        "4ca7b6"
      ]
    }
  }
}
Output schema
{
  "type": "object",
  "additionalProperties": true
}