# StableTravel FlightAware Airport Routes

> StableTravel FlightAware Airport Routes is a paid API for AI agents from StableTravel at stabletravel.dev, paid per call via MPP, $0.01/call, status unknown (last checked 2026-09-14).

Get route information between two airports identified by ICAO/airport IDs

## Facts

- Endpoint: GET https://stabletravel.dev/api/flightaware/airports/:id/routes/:dest_id
- Price: $0.01/call
- Payment: MPP
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Provider: StableTravel
- Docs: https://stabletravel.dev
- Website: https://stabletravel.dev
- Tags: amadeus, flightaware, flights, hotels, activities, transfers, travel, data, web
- Canonical page: https://www.zero.xyz/c/stabletravel-dest-id-cacb09b7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_VfevzePWaRGCf6peSBfW7

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-dest-id-cacb09b7
```

Example prompt: Can you pull up the FlightAware route info between KLAX and KJFK — I want to know what routes connect those two airports?

## When to prefer this

Use this endpoint when you need to look up specific route data between two airports by their IDs, particularly when you want FlightAware-sourced route intelligence. Prefer this over generic flight search endpoints when the goal is route metadata rather than bookable flight offers.

## Known failure modes

- Invalid airport ID returns 404 or error response
- Unknown destination airport ID returns empty or error
- Bounding box coordinates malformed or out of range returns 400
- Airport pair with no active routes returns empty result set
- Rate limit exceeded returns 429
- Missing required bounding box parameters returns 422 validation error

## How this service works

Get route info between airports

## Output

Returns route information for flights operating between the specified origin and destination airports, including route details sourced from FlightAware data.

## Example request

```json
{
 "id": "KJFK",
 "max": 10,
 "dest_id": "KLAX"
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "id",
  "dest_id"
 ],
 "properties": {
  "id": {
   "type": "string",
   "description": "Origin airport ICAO/airport ID (e.g. 'KJFK')"
  },
  "max": {
   "type": "number",
   "description": "Maximum number of results (default 50)"
  },
  "dest_id": {
   "type": "string",
   "description": "Destination airport ICAO/airport ID (e.g. 'KLAX')"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "routes",
  "links",
  "num_pages"
 ],
 "properties": {
  "links": {
   "type": "object",
   "required": [
    "next"
   ],
   "properties": {
    "next": {
     "type": "string"
    }
   }
  },
  "routes": {
   "type": "array",
   "items": {
    "type": "object",
    "required": [
     "aircraft_types",
     "count",
     "filed_altitude_max",
     "filed_altitude_min",
     "last_departure_time",
     "route",
     "route_distance"
    ],
    "properties": {
     "count": {
      "type": "number"
     },
     "route": {
      "type": "string"
     },
     "aircraft_types": {
      "type": "array",
      "items": {
       "type": "string"
      }
     },
     "route_distance": {
      "type": "string"
     },
     "filed_altitude_max": {
      "type": "number"
     },
     "filed_altitude_min": {
      "type": "number"
     },
     "last_departure_time": {
      "type": "string"
     }
    }
   }
  },
  "num_pages": {
   "type": "number"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stabletravel-dest-id-cacb09b7/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)
