# Amadeus Airport Transfer Search

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

Search available airport transfer options (e.g. taxis, shuttles, private cars) between an airport and a destination.

## Facts

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

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

Example prompt: Search for airport transfer options from CDG airport to the Eiffel Tower area in Paris for 2 passengers on June 15th at 3pm.

## When to prefer this

Use this endpoint when you need to find ground transportation options between an airport and a destination, specifically when you want to compare multiple transfer types (taxi, shuttle, private car) with pricing via the Amadeus travel data network through StableTravel.

## Known failure modes

- No transfers available for the requested route or date returns empty results
- Invalid airport code returns a 400 error
- Requested transfer date/time is in the past returns an error
- Unsupported origin/destination combination returns no results
- API quota exceeded or authentication failure returns 401/429 error
- Malformed request body returns 400 validation error

## How this service works

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

## Output

A list of available airport transfer options including vehicle types, pricing, provider names, estimated durations, and availability details for the requested route, date, time, and passenger count.

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": [
   {
    "id": "offer-1",
    "end": {
     "address": {
      "line": "10 Rue de Rivoli"
     }
    },
    "type": "transfer-offer",
    "start": {
     "dateTime": "2026-12-01T10:00:00",
     "locationCode": "CDG"
    },
    "quotation": {
     "currencyCode": "EUR",
     "monetaryAmount": "75.00"
    },
    "transferType": "PRIVATE"
   }
  ]
 }
}
```

## More

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