v1

latestOpenAPI 3.0.02026-07-247251950.2 KB
Hotels

Generate hotel highlights (Beta)

Overview

Beta Feature - Generate short, AI-written "Smart Highlight" cards for a hotel. Each highlight is a title plus a one or two sentence description, generated directly in the requested language.

Rate Limiting: This endpoint is rate-limited to 10 requests per minute per API key for both sandbox and production API keys. Exceeding this limit will result in a 429 Too Many Requests response.

When to Use

  • Hotel detail pages - Show a few compelling reasons to consider a property
  • Partner-specific tone - Adjust voice and emphasis per surface via tone, style and per-highlight context

What You Get

  • Exactly count highlights, always, in the requested order
  • type echoed back from the request so you can map each card to your own UI
  • generated indicating whether the copy is AI-generated or template fallback

Behaviour

Hotel facts (name, city, country, description) are resolved server-side from hotelId; the caller never supplies them. Generated copy is grounded in those facts.

If AI generation fails, the endpoint still returns 200 with the requested number of neutral template highlights and generated: false. It never returns an empty array for a valid hotel.

Results are cached, so repeated calls with an identical request body return identical copy.

Note: This is a beta feature and may be subject to changes.

post/data/hotel/highlights

Request body

hotelIdstring required

Unique ID of the hotel (liteAPI format)

languagestring required

Language code. Highlights are generated directly in this language.

countinteger

Number of highlights to generate. If highlights is supplied, count must equal its length.

tonestring

Global writing guidance, e.g. professional and inviting or calm and practical.

stylestring

Formatting preferences such as title or description length.

Example request

{
  "hotelId": "lp1897",
  "language": "en",
  "count": 3,
  "tone": "professional and inviting",
  "style": "short titles, one sentence descriptions",
  "highlights": [
    {
      "type": "location",
      "context": "nearby attractions and neighbourhood vibe"
    }
  ]
}

Response

OK

Example response

{
  "data": {
    "hotelId": "lp1897",
    "language": "en",
    "generated": true,
    "highlights": [
      {
        "type": "location",
        "title": "Heart of Gothic Quarter",
        "description": "Steps from iconic architecture and vibrant tapas bars."
      }
    ]
  }
}