# 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-14).

Returns the position history (flight track) for a specific flight identified by its FlightAware flight ID

## Facts

- Endpoint: GET https://stabletravel.dev/api/flightaware/flights/UAL1526-1780726400-airline-1167p/track
- Price: $0.024/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stabletravel-flightaware-flight-track-fa51f901
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__n0Cak7157-NyqwP63tYp

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

Example prompt: Can you pull the full flight track for United Airlines flight UAL1526 — I want to see all the position history including estimated positions along the route it flew?

## When to prefer this

Use this endpoint when you need the complete position history (breadcrumb trail) of a specific flight identified by a FlightAware flight ID. Prefer this over real-time flight info endpoints when you want historical trajectory data rather than current status. Best for reconstructing flight paths, analyzing routing, or visualizing the track on a map.

## Known failure modes

- Invalid or expired fa_flight_id returns no data or 404
- Flight ID format mismatch causes lookup failure
- Flight with no tracking data returns empty positions array
- Payment failure (402) if x402 USDC payment not provided
- Rate limiting or upstream FlightAware API unavailability

## How this service works

Get the flight track (position history) for a flight

## Output

An array of position objects for the flight, each containing latitude, longitude, altitude, heading, groundspeed, timestamp, update_type, altitude_change, and the fa_flight_id. Optionally includes estimated positions if the flag is set.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "include_estimated_positions": true
  }
 }
}
```

## 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/stabletravel-flightaware-flight-track-fa51f901/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)
