# StableTravel FlightAware Historical Flights by Ident

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

Retrieves historical flight records for a specific flight identifier within a geographic bounding box

## Facts

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

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-id-6d45e752
```

Example prompt: Pull up the historical flight records for ident UAL123 within the bounding box north 50, south 25, west -125, east -65, and give me up to 100 results.

## When to prefer this

Use this endpoint when you need historical flight data for a specific, known flight identifier (ident) and want to filter results geographically. Prefer this over the operator-based history endpoint when you have a precise flight ident rather than an operator code. Best suited for looking up past flights on a specific route or flight number within a defined geographic region.

## Known failure modes

- Missing required bounding box parameters (north, west, south, east) returns a 400 validation error
- Invalid or non-existent flight ident returns empty results or 404
- Bounding box coordinates out of valid range cause a parameter error
- No historical flights found for the ident in the specified region returns an empty list
- Rate limiting or payment failure returns a 402 or 429 error

## How this service works

Get historical flights by ident

## Output

A list of historical flight records matching the given flight ident, filtered to those operating within the specified geographic bounding box, including flight details such as departure/arrival info, timestamps, and position data as provided by FlightAware.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "north",
  "west",
  "south",
  "east"
 ],
 "properties": {
  "max": {
   "type": "number",
   "description": "Maximum number of results (default 50)"
  },
  "east": {
   "type": "number",
   "description": "Eastern longitude boundary"
  },
  "west": {
   "type": "number",
   "description": "Western longitude boundary"
  },
  "north": {
   "type": "number",
   "description": "Northern latitude boundary"
  },
  "south": {
   "type": "number",
   "description": "Southern latitude boundary"
  }
 }
}
```

## More

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