# StableTravel FlightAware Flight Track History

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

Retrieves the historical position track (latitude, longitude, altitude, heading, groundspeed) for a specific flight by its FlightAware flight ID

## Facts

- Endpoint: GET https://stabletravel.dev/api/flightaware/history/flights/id/track
- Price: $0.12/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-track-history-a96a122a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_EHaEm_Sc_BuW6tCHMk8Hj

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-track-history-a96a122a
```

Example prompt: Can you pull the full position track history for FlightAware flight AAL100-1733068800-airline-0001, including any estimated positions?

## When to prefer this

Use this endpoint when you need the full historical positional track (latitude, longitude, altitude, heading, groundspeed) for a specific known flight identified by its FlightAware flight ID. Prefer this over airport-level endpoints when you need per-flight granular trajectory data rather than aggregate traffic information. Best suited for flight replay, route analysis, or verifying a specific flight's path.

## Known failure modes

- Invalid or unknown fa_flight_id returns empty positions array or 404
- Flight ID not yet in FlightAware history returns no results
- Malformed flight ID format may return 400 error
- Flight too old may not have position data available
- Network or payment failure returns 402 or 5xx

## 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 position objects for the flight, each containing latitude, longitude, altitude (in hundreds of feet), heading (degrees), groundspeed (knots), timestamp (ISO 8601), update_type (e.g. 'A' for ADS-B), altitude_change indicator, and the fa_flight_id. Provides a chronological breadcrumb trail of the flight's trajectory.

## 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"
      }
     },
     "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": {
          "type": "string"
         },
         "altitude_change": {
          "anyOf": [
           {
            "
… (truncated)
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "positions": [
   {
    "heading": 270,
    "altitude": 350,
    "latitude": 40.5,
    "longitude": -100.1,
    "timestamp": "2026-12-01T15:00:00Z",
    "groundspeed": 480,
    "update_type": "A",
    "fa_flight_id": "AAL100-1733068800-airline-0001",
    "altitude_change": "C"
   }
  ]
 }
}
```

## More

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