Skip to content
Eden Engine

Flight Number to Airline Lookup

omnial/x402-flight-status

Given an airline flight number (e.g. LH400, BA117), identifies the operating airline: airline name, airline code, and the flight's own route number. This endpoint is not currently returning live flight-tracking data -- no scheduled or actual departure/arrival time, gate, or delay/status field is present on any real call observed, only airline identification plus a note confirming live data is unavailable. A malformed flight number returns an error code and message instead of airline data.

activeper callv1
Provider
Web & Business Data Network
Category
travel
Provider price
$0.081081 per call
Latency p50 / p95
— / —
Success rate
—
Verified
—

Provider list price; Omnial MCP charges provider cost plus a platform markup on top.

Contract

input_schema.json
{
  "type": "object",
  "required": [
    "flight"
  ],
  "properties": {
    "flight": {
      "type": "string",
      "description": "Flight number, e.g. LH400"
    }
  },
  "additionalProperties": false
}
output_schema.json
{
  "type": "object",
  "properties": {
    "code": {
      "type": "string",
      "description": "Present instead of the airline fields above when the flight number itself is malformed -- observed as 'HTTP_400' for an unrecognized flight number."
    },
    "note": {
      "type": "string",
      "description": "A caveat from the endpoint about data completeness. Observed on the one real fixture captured stating live flight-tracking data is unavailable and only airline identification is being returned -- present on every real call observed so far."
    },
    "message": {
      "type": "string",
      "description": "Human-readable error message accompanying `code`."
    },
    "flight_num": {
      "type": "string",
      "description": "The numeric route portion of the flight number, e.g. '400' for LH400."
    },
    "airline_code": {
      "type": "string",
      "description": "IATA/ICAO airline code parsed from the flight number, e.g. 'LH'."
    },
    "airline_name": {
      "type": "string",
      "description": "The operating airline's name, resolved from airline_code, e.g. 'Lufthansa'."
    },
    "flight_number": {
      "type": "string",
      "description": "Echoes the queried flight number, e.g. 'LH400'."
    }
  },
  "description": "Airline identification for the requested flight number on a recognized flight, or an error code/message when the flight number is malformed.",
  "additionalProperties": true
}

Pricing

Every real charge, itemised. A model that quietly omits one is a slow financial leak, so nothing here is rolled up, and a charge that only applies to some inputs says so rather than being added in.

Prices in this catalog are the provider's own list price, not your bill: Omnial MCP charges provider cost plus a platform markup on top, so what you are charged is higher than the figure shown. For the exact amount a specific call will cost, run omnial_execute with dry_run: true; that number includes the markup and is what we hold while the call runs. It is a quote, not a cap on the charge.

ChargeRate
Per call
Flat, regardless of what comes back
$0.081081
Cost basis
Not recorded

This tool's catalog entry does not record how its final bill is determined, so we will not tell you whether its cost is fixed before the call or reported by the provider afterwards. Either way what is held is a quote rather than a cap: you are charged what the call actually costs, bounded at 2x the quote.

Updated
Sep 15, 2026