Skip to main content
POST
/
hotels
/
min-rates
Retrieve minimum rate for hotels
curl --request POST \
  --url https://api.liteapi.travel/v3.0/hotels/min-rates \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "hotelIds": [
    "lp3803c",
    "lp1f982"
  ],
  "occupancies": [
    {
      "adults": 2,
      "children": [
        5,
        2
      ]
    }
  ],
  "checkin": "2026-07-15",
  "checkout": "2026-07-16",
  "currency": "USD",
  "guestNationality": "US",
  "timeout": 10
}
'
{
  "data": [
    {
      "hotelId": "lp3803c",
      "price": 99.99,
      "suggestedSellingPrice": 120.99
    },
    {
      "hotelId": "lp1f982",
      "price": 200,
      "suggestedSellingPrice": 220
    }
  ],
  "sandbox": true
}

Authorizations

X-API-Key
string
header
required

Body

application/json
hotelIds
string[]
required

List of hotel IDs

Example:
["lp3803c", "lp1f982"]
occupancies
object[]
required
checkin
string
required

Check in date in YYYY-MM-DD (ISO 8601) format

Example:

"2026-07-15"

checkout
string
required

Check out date in YYYY-MM-DD (ISO 8601) format

Example:

"2026-07-16"

currency
string
required

Booking currency

Example:

"USD"

guestNationality
string
required

Guest nationality (ISO 2-code)

Example:

"US"

timeout
number

Request timeout in seconds

Example:

10

Response

Successful response with hotel minimum rates

data
object[]
sandbox
boolean