# Flight Status Lookup by Flight Number and Date

> Flight Status Lookup by Flight Number and Date is a paid API for AI agents from api.x402node.dev, paid per call via x402, $0.15/call, status unknown (last checked 2026-09-14).

Returns scheduled vs actual departure/arrival times, delay, gate, terminal, baggage carousel, aircraft type, and route distance for a given flight number and optional date.

## Facts

- Endpoint: GET https://api.x402node.dev/aviation/flight-status
- Price: $0.15/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/flight-status-lookup-by-flight-number-and-date-38681c2f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_RuYPvmLqZ0NvnNbSIcu8q

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability flight-status-lookup-by-flight-number-and-date-38681c2f
```

Example prompt: What's the current status of flight AA100 on June 23, 2026 — is it on time, and what gate and terminal should I go to?

## When to prefer this

Use this endpoint when you need comprehensive flight status details including gate, terminal, baggage carousel, aircraft type, and both scheduled and actual times for a specific flight number, especially when real-time delay information is required. Prefer this over generic travel APIs when you need structured, pay-per-call access without a subscription.

## Known failure modes

- Flight number not found — invalid or nonexistent flight code returns an error
- Date out of range — historical dates beyond data retention or future dates too far ahead may return no data
- Missing flight parameter — omitting the flight query parameter returns a 400 bad request
- Flight operated but no real-time data available — returns scheduled times only with no actuals
- Network or upstream data source unavailable — returns 5xx error

## How this service works

Universal flight status lookup by number and optional date: scheduled vs actual times, delay, gate, terminal, baggage carousel, aircraft type, route distance. 通用航班状态：按航班号+日期查计划与实际时刻、延误、登机口。日付指定フライト照会。Consulta de vuelo por numero y fecha. 항공편 번호와 날짜로 조회. Query: ?flight=AA100 or ?flight=AA100 date=2026-06-23 Accepts payment on Base or Solana — either network works.

## Output

Returns scheduled and actual departure/arrival times, delay in minutes, departure gate and terminal, arrival baggage carousel number, aircraft type, and route distance for the queried flight.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "flight"
     ],
     "properties": {
      "date": {
       "type": "string",
       "description": "Optional date YYYY-MM-DD"
      },
      "flight": {
       "type": "string",
       "description": "Flight number e.g. AA100 (IATA/ICAO)"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/flight-status-lookup-by-flight-number-and-date-38681c2f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.x402node.dev](https://www.zero.xyz/host/api.x402node.dev/llms.txt)
