# Amadeus Hotel Offers Search by Hotel ID

> Amadeus Hotel Offers Search by Hotel ID is a paid API for AI agents from stabletravel.dev, paid per call via MPP or x402, $0.0324/call, status unknown (last checked 2026-09-13).

Search available room offers and rates for a specific hotel using its Amadeus hotel ID.

## Facts

- Endpoint: GET https://stabletravel.dev/api/hotels/search/by-hotel
- Price: $0.0324/call
- Payment: MPP, x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/amadeus-065cea67
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_6ojFh2mGfcBO5xgiFxCzR

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-065cea67
```

Example prompt: Can you find available room offers at the Amadeus hotel MCLONGHM for 2 adults checking in on June 15 and checking out June 18, showing only the best rates, breakfast included, priced in USD?

## When to prefer this

Use this endpoint when you already have a specific Amadeus hotel ID and want to retrieve room offers, rates, and availability for that hotel. Prefer this over a city-level hotel search when you've already identified the hotel and need detailed pricing. Best for itinerary building, price comparison for a known property, or completing a booking flow after hotel discovery.

## Known failure modes

- Invalid or unknown hotelId returns no results or 404
- Missing required hotelId parameter returns 400 bad request
- Invalid date format for checkInDate or checkOutDate causes error
- checkOutDate before or equal to checkInDate returns validation error
- Unsupported currencyCode value returns error
- No availability for the requested dates returns empty data array
- Invalid boardType enum value returns 400

## How this service works

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

## Output

A list of hotel room offers for the specified hotel ID, including available room types, rates, board types (e.g. BREAKFAST, ALL_INCLUSIVE), payment policies, prices in the requested currency, and availability status.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "hotelId": "MCLONGHM"
  }
 }
}
```

## 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": [
      "hotelId"
     ],
     "properties": {
      "lang": {
       "type": "string"
      },
      "adults": {
       "type": "number"
      },
      "hotelId": {
       "type": "string",
       "description": "Amadeus hotel ID"
      },
      "boardType": {
       "enum": [
        "ROOM_ONLY",
        "BREAKFAST",
        "HALF_BOARD",
        "FULL_BOARD",
        "ALL_INCLUSIVE"
       ],
       "type": "string"
      },
      "priceRange": {
       "type": "string"
      },
      "checkInDate": {
       "type": "string"
      },
      "bestRateOnly": {
       "type": "boolean"
      },
      "checkOutDate": {
       "type": "string"
      },
      "currencyCode": {
       "enum": [
        "CAD",
        "HKD",
        "ISK",
        "PHP",
        "DKK",
        "HUF",
        "CZK",
        "AUD",
        "RON",
        "SEK",
        "IDR",
        "INR",
        "BRL",
        "RUB",
        "HRK",
        "JPY",
        "THB",
        "EUR",
        "CHF",
        "SGD",
        "PLN",
        "BGN",
        "TRY",
        "CNY",
        "NOK",
        "NZD",
        "ZAR",
        "USD",
        "MXN",
        "ILS",
        "GBP",
        "KRW",
        "MYR"
       ],
       "type": "string"
      },
      "includeClosed": {
       "type": "boolean"
      },
      "paymentPolicy": {
       "enum": [
        "GUARANTEE",
        "DEPOSIT",
        "NONE"
       ],
       "type": "string"
      },
      "countryOfResidence": {
       "type": "string"
      }
     },
     "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": {}
     },
     "additionalProperties": false
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {
   "type": "hotel-offers",
   "hotel": {
    "name": "Le Meridien Etoile",
    "hotelId": "MCPAR123"
   },
   "offers": [
    {
     "id": "offer-1",
     "price": {
      "total": "500.00",
      "currency": "USD"
     }
    }
   ],
   "available": true
  }
 }
}
```

## More

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