# StableTravel Flight Information by Ident

> StableTravel 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-16).

Retrieves detailed flight information for a specific aircraft or flight using a designator, registration, or FlightAware flight ID

## Facts

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

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-flight-information-by-ident-35042c8d
```

Example prompt: Can you pull up the recent flight history for the aircraft with registration JA73NG, including where it flew from and to and the departure times?

## When to prefer this

Use this endpoint when you need structured flight data for a known flight identifier (tail number, flight number, or FlightAware ID) via a pay-per-use micropayment model. Prefer it over scraping or manual lookup when an agent needs machine-readable flight details including airport codes, times, and routing. Ideal when the identifier type is known and you want paginated historical or scheduled flight records powered by FlightAware data.

## Known failure modes

- Invalid or unknown ident returns empty flights array
- Malformed ident_type enum value causes request rejection
- Date range too broad or unsupported causes truncated results
- Rate limiting or payment failure (x402) returns 402 Payment Required
- Network timeout for slow FlightAware upstream response
- Pagination cursor mismatch returns error or unexpected results

## How this service works

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

## Output

Returns a paginated list of flights matching the provided ident, each containing flight type (Airline, General_Aviation, Cargo), ident string, origin and destination airport details (name, city, IATA/ICAO codes, timezone), departure and 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-flight-information-by-ident-35042c8d/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)
