# Amadeus Flight Offer Pricing

> Amadeus Flight Offer Pricing is a paid API for AI agents from stabletravel.dev, paid per call via x402, $0.0324/call, status unknown (last checked 2026-09-13).

Confirms and validates the current price for a specific flight offer before booking.

## Facts

- Endpoint: POST https://stabletravel.dev/api/flights/price
- Price: $0.0324/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/amadeus-6a7987d0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_HLh_2a8aeFkwUZGJNCI8w

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 amadeus-6a7987d0 -d '<json body>'
```

Example prompt: Before I book the flight from JFK to LHR on June 15th with American Airlines that I found earlier, can you confirm the current price for that offer is still valid and show me the full fare breakdown including taxes?

## When to prefer this

Use this endpoint immediately before attempting to book a flight, to confirm the price is still valid and accurate. This is the critical pre-booking validation step in a flight purchase flow — always call this after searching for flight availability and before committing to a booking order.

## Known failure modes

- Flight offer no longer available at the quoted price — fare expired or sold out
- Invalid or malformed flight offer object submitted
- Upstream Amadeus API timeout or service unavailability
- Flight offer data is stale and cannot be re-priced
- Missing required passenger or segment information in the offer

## How this service works

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

## Output

Returns a confirmed, up-to-date price for the submitted flight offer including base fare, taxes, fees, and total amount — confirming whether the offer pricing is still valid and bookable at that rate.

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {
   "type": "flight-offers-pricing",
   "flightOffers": [
    {
     "id": "1",
     "type": "flight-offer",
     "price": {
      "total": "350.00",
      "currency": "USD"
     }
    }
   ]
  }
 }
}
```

## More

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