# StableTravel FlightAware Flight Intents by Order

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

Retrieves FlightAware intent data for a specific flight transfer order using an order ID and confirmation number

## Facts

- Endpoint: POST https://stabletravel.dev/api/flightaware/flights/id/intents
- Price: $0.001/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-intents-by-order-e95e3761
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_5LcqXvG0bjr75mz29h1jD

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-intents-by-order-e95e3761 -d '<json body>'
```

Example prompt: Can you pull up the flight intents for my StableTravel transfer order ID 'ORD-8821' with confirmation number 'CNF-20948'?

## When to prefer this

Use this endpoint when you have a specific StableTravel transfer order ID and confirmation number and need to retrieve the underlying FlightAware flight intent data for that booking. Prefer this over general flight search endpoints when you already have a confirmed order reference and need intent-level resolution rather than availability search.

## Known failure modes

- Order ID not found — returns error if orderId does not match any known transfer
- Invalid confirmation number — returns error if confirmNbr does not match the order
- Missing required fields — returns 400 if orderId or confirmNbr is absent
- Payment failure — x402 micropayment of $0.001 USDC not completed, returns 402
- Empty result — order exists but has no associated flight intents

## How this service works

Pay-per-request access to flights, award availability, hotels, activities, and transfers. No auth, no subscriptions.

## Output

Returns FlightAware intent data associated with the specified transfer order, including flight-level details tied to the order ID and confirmation number. The response is a JSON object with intent records for the booking.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "ident": {
   "type": "string",
   "description": "Flight identifier"
  },
  "intent": {
   "enum": [
    "announced",
    "scheduled",
    "departed",
    "enroute",
    "approaching",
    "arrived",
    "diverted",
    "cancelled"
   ],
   "type": "string",
   "description": "Flight intent type for push notifications"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {}
}
```

## More

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