# Amadeus Hotel Offer Details

> Amadeus Hotel Offer Details 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 full details for a specific hotel offer by offer ID using the Amadeus travel API.

## Facts

- Endpoint: GET https://stabletravel.dev/api/hotels/offer
- 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-48181291
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_tELqgaeIDXRWl1Km7BJrf

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-48181291
```

Example prompt: Can you pull up the full details for hotel offer ID 'OBJ741RQFBZ' on Amadeus — I want to see the room type, pricing, and cancellation policy before I commit to booking it.

## When to prefer this

Use this endpoint when you already have a specific hotel offer ID (e.g., from a prior hotel search) and need to retrieve its full details — room type, pricing, and booking conditions — before confirming a reservation. Prefer this over a hotel search endpoint when you need offer-level detail rather than a list of properties.

## Known failure modes

- Invalid or expired offer ID returns 404 not found
- Malformed offer ID format returns 400 bad request
- Hotel offer no longer available returns an error or empty data
- Payment of 0.0324 USDC required; failure to pay returns 402 Payment Required
- Rate limiting may return 429 Too Many Requests

## How this service works

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

## Output

Returns structured hotel offer data including room details, pricing breakdown, cancellation policies, booking conditions, and availability for the specified offer ID.

## 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": [
      "offerId"
     ],
     "properties": {
      "offerId": {
       "type": "string",
       "description": "Hotel offer ID"
      }
     },
     "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": {
   "id": "offer-1",
   "type": "hotel-offer",
   "price": {
    "total": "500.00",
    "currency": "USD"
   }
  }
 }
}
```

## More

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