# StableTravel FlightAware Flight Track

> StableTravel FlightAware Flight Track 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).

Retrieves the position track (lat/lon/altitude/heading/speed) for a specific flight by its FlightAware flight ID

## Facts

- Endpoint: GET https://stabletravel.dev/api/flightaware/flights/id/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/stabletravel-flightaware-flight-track-cc2d0b13
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_mroiiZyXuXhFg7xZdq-VS

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-cc2d0b13
```

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

## When to prefer this

Use this endpoint when you have a specific FlightAware flight ID and need detailed positional telemetry (lat/lon/altitude/speed/heading over time) for that flight. Prefer this over airport-level endpoints when the query is about a specific flight's trajectory rather than aggregate airport traffic.

## Known failure modes

- Invalid or unknown fa_flight_id returns empty positions array or 404
- Flight ID for a future or very old flight may have no track data
- Malformed flight ID format causes request rejection
- Network or payment failure (x402) results in 402 Payment Required

## 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 records for the flight, each containing latitude, longitude, altitude (in hundreds of feet), heading, groundspeed, timestamp, update type (e.g. ADS-B), FlightAware flight ID, and altitude change indicator (climbing/descending/level).

## 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)
```

## 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-cc2d0b13/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)
