# StableTravel FlightAware Flight Info by Ident

> StableTravel FlightAware Flight Info 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 its designator, registration, or FlightAware flight ID

## Facts

- Endpoint: GET https://stabletravel.dev/api/flightaware/flights/UA123
- 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/stabletravel-flightaware-flight-info-by-ident-62be4d59
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_8FrgRuT93r37ZV7SzZFNe

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 stabletravel-flightaware-flight-info-by-ident-62be4d59
```

Example prompt: Can you pull up the full flight details for United Airlines flight UA123, searching by designator — I need the origin, destination, departure and arrival times?

## When to prefer this

Use this endpoint when you need to look up specific flight details by a known flight designator (e.g. UA123), aircraft registration (tail number), or FlightAware-specific fa_flight_id. Ideal for agents that need real-time or historical flight metadata without API key management, paying per-call via x402. Prefer this over scraping or airline websites when structured JSON output with IATA/ICAO codes, route, and timing is needed programmatically.

## Known failure modes

- Flight ident not found — empty flights array returned
- Invalid ident_type enum value — schema validation error
- Date range parameters malformed (non-ISO 8601) — parsing error
- Payment not fulfilled — 402 Payment Required response
- Rate limit or quota exceeded — provider-level error
- FlightAware upstream outage — downstream 5xx error

## How this service works

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

## Output

Returns an array of flight objects matching the ident, each containing origin and destination airport details (IATA/ICAO codes, city, name, timezone), flight type (Airline, General_Aviation, Cargo), route string, ident, and 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/stabletravel-flightaware-flight-info-by-ident-62be4d59/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)
