# Amadeus Flight Seat Map

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

Retrieves the seat map for a specific flight order, showing available and unavailable seats by cabin and deck.

## Facts

- Endpoint: GET https://stabletravel.dev/api/flights/seatmap
- Price: $0.0324/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/amadeus-3d2d5ff2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Y9gRg-h1faM1QZX-LokRQ

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-3d2d5ff2
```

Example prompt: Can you pull up the seat map for my flight order ID eJzTd9f35fUBAAt9Agk so I can see which seats are still available?

## When to prefer this

Use this endpoint when you have a valid Amadeus flight order ID and need to display or process seat availability and cabin layout data — particularly useful after a flight has been booked and the user wants to select or review seats.

## Known failure modes

- Invalid or expired flight order ID returns an error
- Flight order not found returns 404-equivalent
- Missing required flight-orderId query parameter returns validation error
- Seat map not available for certain fare types or airlines
- Payment failure via x402 protocol prevents access

## How this service works

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

## Output

An array of seat map objects showing cabin configuration, individual seat availability, seat characteristics, and optional warnings or dictionary metadata for decoding codes.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "$schema": "https://json-schema.org/draft/2020-12/schema",
     "required": [
      "flight-orderId"
     ],
     "properties": {
      "flight-orderId": {
       "type": "string",
       "description": "Flight order ID for seatmap retrieval"
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "$schema": "https://json-schema.org/draft/2020-12/schema",
     "required": [
      "data"
     ],
     "properties": {
      "data": {
       "type": "array",
       "items": {}
      },
      "warnings": {
       "type": "array",
       "items": {}
      },
      "dictionaries": {}
     },
     "additionalProperties": false
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": [
   {
    "type": "seatmap",
    "decks": [],
    "number": "100",
    "aircraft": {
     "code": "738"
    },
    "segmentId": "1",
    "carrierCode": "AA",
    "flightOfferId": "1"
   }
  ]
 }
}
```

## More

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