# StableTravel Flight Info by Ident

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

Retrieve 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/JA607A
- 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-flight-info-by-ident-f1320357
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_OqGWHlCWSnkzaSwLDDfzV

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-info-by-ident-f1320357
```

Example prompt: Can you look up the recent flights for aircraft registration JA607A using FlightAware data? I want to see the origin, destination, and route for its flights from the past week.

## When to prefer this

Use this endpoint when you know a specific flight designator (e.g. AA100), aircraft registration (e.g. N12345 or JA607A), or a FlightAware flight ID and need detailed flight data including origin/destination airports, route, and flight type. Prefer this over general flight search when you already have a specific identifier. This is backed by FlightAware data, making it suitable for authoritative aviation data needs including private aircraft tracking, commercial flight verification, and cargo flight lookup.

## Known failure modes

- Invalid or unknown ident returns empty flights array
- Incorrect ident_type enum causes mismatched or empty results
- Date range too narrow or too far in the past returns no results
- Malformed ISO 8601 start/end dates cause request failure
- Payment not attached results in 402 response
- Rate limiting or provider downtime from FlightAware upstream causes errors

## How this service works

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

## Output

Returns a paginated list of flights matching the given ident, each containing: flight ident, flight type (Airline, General_Aviation, Cargo), route string, origin and destination airport details (city, ICAO/IATA/LID codes, name, timezone, info URL), plus pagination links for fetching 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-flight-info-by-ident-f1320357/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)
