# 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.02/call, status unknown (last checked 2026-09-13).

Retrieves the route information (waypoints and route distance) for a specific flight by its FlightAware flight ID

## Facts

- Endpoint: GET https://stabletravel.dev/api/flightaware/flights/id/route-info
- Price: $0.02/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-077999ee
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_9DTKlmQeAKH0ZYb8s469b

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-077999ee
```

Example prompt: Can you pull up the route info for FlightAware flight ID AAL123-1234567890 and tell me what waypoints it passes through and the total route distance?

## When to prefer this

Use this endpoint when you need detailed navigational route data — including individual waypoints/fixes with coordinates — for a specific flight identified by its FlightAware flight ID. Prefer this over general flight search endpoints when you already have the flight ID and need precise route geometry or distance.

## Known failure modes

- Invalid or unknown flight ID returns empty or error response
- Flight ID not found in FlightAware system results in 404 or null data
- Payment not processed correctly results in 402 response
- Malformed request parameters return a 400 error
- Flight has no route data available (e.g. private or untracked flights)

## How this service works

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

## Output

Returns an array of navigational fixes (waypoints) each with a name, type, latitude, and longitude, plus the total route distance in nautical miles or similar unit 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-077999ee/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)
