# Flight Status Lookup by Flight Number

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

Returns real-time flight status including departure/arrival times, delays, and gate information for a given flight number.

## Facts

- Endpoint: GET https://api.strale.io/x402/flight-status
- Price: $0.054001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-strale-io-4ae833e4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_YZeb9omeP9p_mn4CJqZM1

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 api-strale-io-4ae833e4
```

Example prompt: Can you check the current status of flight LH400 — is it on time, and what gate is it departing from?

## When to prefer this

Use this endpoint when you need real-time or near-real-time flight status for a specific flight number, including departure/arrival times, delay information, and gate data. Prefer this over general travel search APIs when you already have the flight number and need operational status details.

## Known failure modes

- Invalid or malformed flight number returns an error
- Flight number not found in database returns no results
- Missing or invalid AVIATIONSTACK_API_KEY results in authentication error
- Network timeout from upstream aviation data provider
- Historical or future flights beyond data window may return incomplete data

## How this service works

Look up flight status by flight number (e.g. LH400, BA117). Returns departure/arrival times, delays, gates. Requires AVIATIONSTACK_API_KEY for live data.

## Output

Returns departure and arrival times, any delay information, gate assignments, and overall flight status for the queried flight number.

## Example request

```json
{
 "flight": "BA747"
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "flight"
 ],
 "properties": {
  "flight": {
   "type": "string",
   "description": "Flight number, e.g. LH400"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "status": {
  "type": "string"
 },
 "airline": {
  "type": "object"
 },
 "arrival": {
  "type": "object"
 },
 "departure": {
  "type": "object"
 },
 "flight_number": {
  "type": "string"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-strale-io-4ae833e4/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.strale.io](https://www.zero.xyz/host/api.strale.io/llms.txt)
