# FlightAware Flight Information by Ident

> FlightAware Flight Information by Ident is a paid API for AI agents from stabletravel.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Retrieves detailed flight information for a specific flight identified by designator, registration, or fa_flight_id

## Facts

- Endpoint: GET https://stabletravel.dev/api/flightaware/flights/ITY641
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/flightaware-flight-information-by-ident-5f57dcc9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_t9_XNCSgsuuZj6sXNs5RC

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 flightaware-flight-information-by-ident-5f57dcc9
```

Example prompt: Can you pull up the flight details for ITA Airways flight ITY641 using the flight designator — I want to see the route, origin, and destination airport info?

## When to prefer this

Choose this endpoint when you need structured, detailed flight information for a known flight identifier (designator like ITY641, tail/registration number, or FlightAware fa_flight_id) and want access to origin/destination airport metadata, route, and flight type. Prefer this over generic flight search when you already know the flight ident and need authoritative FlightAware data via a pay-per-request model with no API key required.

## Known failure modes

- Invalid or unknown flight ident returns empty flights array
- Incorrect ident_type mismatch causes no results (e.g. passing a designator when registration is expected)
- Date range too narrow or outside available data returns no flights
- Payment failure (x402) blocks the request before any data is returned
- Pagination cursor invalid or expired causes pagination error

## How this service works

Get flight information by ident (designator, registration, or fa_flight_id)

## Output

Returns an array of flight objects each containing the flight ident, type (Airline, General_Aviation, or Cargo), route string, origin and destination airport details (city, IATA/ICAO codes, timezone, name, airport info URL), plus pagination links for additional pages of results.

## 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",
     "properties": {
      "end": {
       "type": "string",
       "description": "End date/time (ISO 8601)"
      },
      "start": {
       "type": "string",
       "description": "Start date/time (ISO 8601)"
      },
      "cursor": {
       "type": "string",
       "description": "Opaque cursor for pagination"
      },
      "max_pages": {
       "type": "number",
       "description": "Maximum number of pages to fetch"
      },
      "ident_type": {
       "enum": [
        "fa_flight_id",
        "designator",
        "registration"
       ],
       "type": "string",
       "description": "Type of flight identifier"
      }
     },
     "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": [
      "flights"
     ],
     "properties": {
      "links": {
       "anyOf": [
        {
         "type": "object",
         "properties": {
          "next": {
           "anyOf": [
            {
             "type": "string"
            },
            {
             "type": "null"
            }
           ]
          }
         },
         "additionalProperties": false
        },
        {
         "type": "null"
        }
       ]
      },
      "flights": {
       "type": "array",
       "items": {
        "type": "object",
        "properties": {
         "type": {
          "anyOf": [
           {
            "enum": [
             "Airline",
             "General_Aviation",
             "Cargo"
            ],
            "type": "string"
           },
           {
            "type": "null"
           }
          ]
         },
         "ident": {
          "anyOf": [
           {
            "type": "string"
           },
           {
            "type": "null"
           }
      
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/flightaware-flight-information-by-ident-5f57dcc9/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)
