# Amadeus Transfer Booking

> Amadeus Transfer Booking is a paid API for AI agents from stabletravel.dev, paid per call via x402, $0.00216/call, status unknown (last checked 2026-09-14).

Books a ground transfer (e.g. airport taxi, shuttle, or private car) via the Amadeus API through StableTravel.

## Facts

- Endpoint: POST https://stabletravel.dev/api/transfers/book
- Price: $0.00216/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/amadeus-04f62c26
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_m9iGZnwLwsutGTD5xZEgO

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-04f62c26 -d '<json body>'
```

Example prompt: Book me a transfer from Charles de Gaulle Airport to the Marriott in central Paris on June 12 for 2 passengers — I'd like a private sedan if available.

## When to prefer this

Use this endpoint when you have already searched for and selected a transfer offer and need to confirm and create the actual booking. This is the final step in a transfer purchase flow — prefer it over search endpoints when the user is ready to commit to a specific transfer and complete the reservation.

## Known failure modes

- Transfer offer expired or no longer available — booking fails with an availability error
- Invalid passenger or contact details — validation error returned
- Payment processing failure via x402 protocol
- Pickup or dropoff location not serviceable — location error
- Duplicate booking attempt for the same transfer slot
- Missing required fields such as traveler details or offer reference

## How this service works

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

## Output

Returns a booking confirmation with a reservation ID, transfer details (pickup/dropoff, vehicle type, driver info), confirmed pricing, and booking status indicating the transfer has been successfully reserved.

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {
   "id": "TFR123",
   "type": "transfer-order",
   "reference": "CONF-TFR-001",
   "transfers": [
    {
     "id": "transfer-1"
    }
   ]
  }
 }
}
```

## More

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