# StableTravel FlightAware Flight Lookup

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

Retrieves flight information for a specific flight identifier (designator, registration, or fa_flight_id) via FlightAware data

## Facts

- Endpoint: GET https://stabletravel.dev/api/flightaware/flights/TAP9035
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stabletravel-flightaware-flight-lookup-56a71386
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ORNAMn2d0psESa5fsudT-

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-lookup-56a71386
```

Example prompt: Can you pull up the flight details for TAP9035 — looking for origin, destination, departure and arrival times using the flight designator identifier type?

## When to prefer this

Use this endpoint when you need detailed flight information for a specific flight identifier — particularly when you have the airline designator (e.g. TAP9035), aircraft registration, or FlightAware fa_flight_id. Prefer this over airport-based endpoints when you already know the specific flight and want its full route and timing details. Ideal for tracking a single known flight or verifying flight details programmatically without requiring an auth account.

## Known failure modes

- Invalid or unknown flight identifier returns empty flights array
- Malformed ident_type enum value returns 400 error
- Date range filters with invalid ISO 8601 format return 400 error
- Flight identifier not found in FlightAware database returns empty results
- Rate limiting or payment failure returns 402 error
- Requesting flights outside available historical window returns empty results

## How this service works

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

## Output

Returns an array of flight objects matching the identifier, each containing ident, flight type (Airline/General_Aviation/Cargo), origin and destination airport details (IATA/ICAO codes, city, name, timezone), departure/arrival times, route string, and pagination links for additional 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-lookup-56a71386/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)
