# FlightAware Flight Track API via stabletravel.dev

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

Returns the full position history (flight track) for a specific flight, including GPS coordinates, altitude, heading, and groundspeed at each recorded point

## Facts

- Endpoint: GET https://stabletravel.dev/api/flightaware/flights/AAL95-1780896939-airline-1525p/track
- Price: $0.024/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/flightaware-flight-track-api-via-stabletravel-dev-7a9fa42d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_zxTzle13GJ4-VMDzTF-pW

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 flightaware-flight-track-api-via-stabletravel-dev-7a9fa42d
```

Example prompt: Can you pull up the full flight track for American Airlines flight AAL95 — I want to see all the position data including estimated positions along the route?

## When to prefer this

Use this endpoint when you need the historical or live positional breadcrumb trail for a specific flight (by FlightAware flight ID), such as replaying a flight path, auditing actual route flown, or analyzing flight performance. Prefer this over a flight status endpoint when you need granular positional time-series data rather than just origin/destination/status.

## Known failure modes

- Invalid or unknown fa_flight_id returns empty positions array or 404
- Flight ID has expired or aged out of FlightAware's data window
- Malformed flight ID format causes a 400 bad request
- Network or upstream FlightAware API timeout returns 503
- Insufficient payment or x402 payment failure returns 402

## How this service works

Get the flight track (position history) for a flight

## Output

An array of position objects, each containing latitude, longitude, altitude, heading, groundspeed, timestamp, update_type, altitude_change, and fa_flight_id. Together these form a chronological breadcrumb trail of the aircraft's path through the air.

## 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": {
      "include_estimated_positions": {
       "type": "boolean",
       "description": "Include estimated positions"
      }
     },
     "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": [
      "positions"
     ],
     "properties": {
      "positions": {
       "type": "array",
       "items": {
        "type": "object",
        "properties": {
         "heading": {
          "anyOf": [
           {
            "type": "number"
           },
           {
            "type": "null"
           }
          ]
         },
         "altitude": {
          "anyOf": [
           {
            "type": "number"
           },
           {
            "type": "null"
           }
          ]
         },
         "latitude": {
          "anyOf": [
           {
            "type": "number"
           },
           {
            "type": "null"
           }
          ]
         },
         "longitude": {
          "anyOf": [
           {
            "type": "number"
           },
           {
            "type": "null"
           }
          ]
         },
         "timestamp": {
          "anyOf": [
           {
            "type": "string"
           },
           {
            "type": "null"
           }
          ]
         },
         "groundspeed": {
          "anyOf": [
           {
            "type": "number"
           },
           {
            "type": "null"
           }
          ]
         },
         "update_type": {
          "anyOf": [
           {
            "type": "string"
           },
           {
            "type": "null"
           }
          ]
         },
         "fa_flight_id": {
          "anyOf": [
           {
            "type": "string"

… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/flightaware-flight-track-api-via-stabletravel-dev-7a9fa42d/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)
