# StableTravel FlightAware Flight Route Info

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

Returns the route information (waypoints, fixes, and total distance) for a specific flight by its ID using FlightAware data.

## Facts

- Endpoint: GET https://stabletravel.dev/api/flightaware/history/flights/id/route-info
- Price: $0.08/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stabletravel-flightaware-flight-route-info-1838d6b4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_h-AD8DohIvS7vSuNM5IOp

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-route-info-1838d6b4
```

Example prompt: Can you look up the full route info for flight ID ABC123 — I want to see all the waypoints, fixes, and the total route distance?

## When to prefer this

Use this endpoint when you need the precise geographic route — including named waypoints/fixes and total distance — for a specific historical flight identified by its FlightAware flight ID. Prefer this over general flight search endpoints when you already have a flight ID and need routing detail rather than schedule or pricing data.

## Known failure modes

- Invalid or unknown flight ID returns an error or empty result
- Flight ID not found in FlightAware historical data
- Payment not processed (x402 protocol failure) blocks the request
- Malformed input schema results in a 400-level error
- Flight has no route data available (e.g., VFR or private flight)

## How this service works

Pay-per-request access to flights, award availability, hotels, activities, and transfers. No auth, no subscriptions.

## Output

Returns a JSON object containing an array of fixes/waypoints (each with a name, type, latitude, and longitude) and the total route distance in miles for the specified flight.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "properties": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "fixes": [
   {
    "name": "DCT",
    "type": "waypoint",
    "latitude": 40.5,
    "longitude": -100.1
   }
  ],
  "route_distance": 2475
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stabletravel-flightaware-flight-route-info-1838d6b4/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)
