# Amadeus Flight Status by Carrier and Flight Number

> Amadeus Flight Status by Carrier and Flight Number is a paid API for AI agents from stabletravel.dev, paid per call via x402, $0.0054/call, status unknown (last checked 2026-09-14).

Retrieves real-time or scheduled flight status for a specific flight identified by carrier code, flight number, and departure date.

## Facts

- Endpoint: GET https://stabletravel.dev/api/flights/status
- Price: $0.0054/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/amadeus-07a04c34
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Lo5pKUiRgyKBJFGWi27qW

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 amadeus-07a04c34
```

Example prompt: What's the current status of American Airlines flight AA100 scheduled to depart on 2025-06-15?

## When to prefer this

Use this endpoint when you need to check the real-time or scheduled status of a specific known flight identified by its carrier IATA code, flight number, and date. Prefer this over airport-level endpoints when the user already knows their specific flight details and wants operational status rather than a broad list of flights.

## Known failure modes

- Invalid or unknown carrier code returns empty data array
- Incorrect flight number returns no results
- Date format not in YYYY-MM-DD causes validation error
- Flight not found for given date returns empty data
- API quota exceeded returns 429 error
- Payment not completed returns 402 error

## How this service works

Pay-per-request access to flights, award availability, hotels, activities, and transfers. No auth, no subscriptions.

## Output

Returns an array of flight status records for the matched flight, including operational data such as departure and arrival status, delays, and cancellations, along with optional warnings and reference dictionaries.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "$schema": "https://json-schema.org/draft/2020-12/schema",
     "required": [
      "carrierCode",
      "flightNumber",
      "scheduledDepartureDate"
     ],
     "properties": {
      "carrierCode": {
       "type": "string",
       "description": "Airline IATA code (e.g. AA)"
      },
      "flightNumber": {
       "type": "string",
       "description": "Flight number (e.g. 100)"
      },
      "operationalSuffix": {
       "type": "string",
       "description": "Operational suffix"
      },
      "scheduledDepartureDate": {
       "type": "string",
       "description": "Scheduled departure date (YYYY-MM-DD)"
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "$schema": "https://json-schema.org/draft/2020-12/schema",
     "required": [
      "data"
     ],
     "properties": {
      "data": {
       "type": "array",
       "items": {}
      },
      "meta": {},
      "warnings": {
       "type": "array",
       "items": {}
      },
      "dictionaries": {}
     },
     "additionalProperties": false
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": [
   {
    "type": "DatedFlight",
    "flightPoints": [
     {
      "iataCode": "JFK",
      "departure": {
       "timings": [
        {
         "value": "08:00:00"
        }
       ]
      }
     },
     {
      "arrival": {
       "timings": [
        {
         "value": "11:00:00"
        }
       ]
      },
      "iataCode": "LAX"
     }
    ],
    "flightDesignator": {
     "carrierCode": "AA",
     "flightNumber": 100
    },
    "scheduledDepartureDate": "2026-12-01"
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/amadeus-07a04c34/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from stabletravel.dev](https://www.zero.xyz/host/stabletravel.dev/llms.txt)
