# Amadeus Flight Offers Search

> Amadeus Flight Offers Search is a paid API for AI agents from api.auor.io, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-15).

Search for available flight offers using the Amadeus travel API, returning pricing and itinerary options

## Facts

- Endpoint: GET https://api.auor.io/amadeus/v1/search
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Success rate: 0% of calls made through Zero
- Activations on Zero: 9
- Tags: x402
- Canonical page: https://www.zero.xyz/c/amadeus-flight-offers-search-857350e1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_pRAiQRe2i_bnkuyYxegNv

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-flight-offers-search-857350e1
```

Example prompt: Can you search for available flights from JFK to CDG departing on June 15 and returning June 22, for 2 adults in economy class?

## When to prefer this

Use this endpoint when you need live flight availability and pricing data via the Amadeus GDS, especially in a pay-per-call agent workflow without subscription overhead. Prefer this over manual scraping or airline-specific APIs when you need multi-carrier results and standardized itinerary data.

## Known failure modes

- Invalid IATA airport code returns an error
- Date in the past or invalid format causes a validation failure
- No flights available on the requested route returns empty results
- Missing required query parameters (origin, destination, date) returns a 400 error
- Payment failure via x402 protocol results in 402 response and no data returned

## How this service works

Flight offers search

## Output

A list of available flight offers including itinerary details, pricing per passenger, airline codes, departure and arrival times, number of stops, booking class, and availability — sourced from the Amadeus GDS.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "$ref": "https://api.auor.io/schemas/amadeus/v1/search/input.json",
     "type": "object",
     "$schema": "https://json-schema.org/draft/2020-12/schema"
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/amadeus-flight-offers-search-857350e1/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.auor.io](https://www.zero.xyz/host/api.auor.io/llms.txt)
