# Amadeus Hotel Sentiment Ratings

> Amadeus Hotel Sentiment Ratings is a paid API for AI agents from stabletravel.dev, paid per call via x402, $0.108/call, status unknown (last checked 2026-09-13).

Retrieves hotel sentiment ratings and guest reviews for one or more hotels by their Amadeus hotel IDs

## Facts

- Endpoint: GET https://stabletravel.dev/api/hotels/ratings
- Price: $0.108/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/amadeus-722dc0bd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_aoAHF6Nntk2-duJ_IV323

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-722dc0bd
```

Example prompt: Can you pull up the guest sentiment ratings and reviews for these Amadeus hotels: MCLONGHM, RTPARHIL, and BWNYC001 — I want to see how travelers have rated them before I recommend one?

## When to prefer this

Use this endpoint when you need guest sentiment scores and review data for specific hotels already identified by their Amadeus hotel IDs — ideal after a hotel search has already returned IDs and you need quality/satisfaction signals to rank or compare properties

## Known failure modes

- Missing hotelIds parameter returns 400 error
- Invalid or non-existent Amadeus hotel IDs return empty data array or 404
- Malformed comma-separated ID list may cause partial results or error
- Payment failure (402) if x402 USDC payment not completed
- Rate limiting if too many IDs submitted at once

## How this service works

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

## Output

Returns an array of hotel sentiment data objects containing ratings scores and guest review sentiment for each requested hotel ID, with optional warnings metadata

## 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": [
      "hotelIds"
     ],
     "properties": {
      "hotelIds": {
       "type": "string",
       "description": "Comma-separated Amadeus hotel IDs"
      }
     },
     "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": {}
      },
      "meta": {},
      "warnings": {
       "type": "array",
       "items": {}
      }
     },
     "additionalProperties": false
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": [
   {
    "type": "hotel-sentiment",
    "hotelId": "MCPAR123",
    "overallRating": 85,
    "numberOfReviews": 1234
   }
  ],
  "meta": {
   "count": 1
  }
 }
}
```

## More

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