← WebMCP Directory

Tool tree

businesshotels.com

Travel & Events
https://www.businesshotels.com/
Hotel search and booking for business and leisure travel
Explore capabilities

Tools verified

get_live_hotel_ratesAnswer

Retrieve current availability and the all-in stay total for one named hotel from BusinessHotels.com, plus the secure BusinessHotels booking URL when available. Use one hotel per call.

View tool JSON
{
  "name": "get_live_hotel_rates",
  "kind": "answer",
  "impl": "imperative",
  "description": "Retrieve current availability and the all-in stay total for one named hotel from BusinessHotels.com, plus the secure BusinessHotels booking URL when available. Use one hotel per call.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "hotelName": {
        "type": "string",
        "description": "Full hotel name plus city and 2-letter country code when possible."
      },
      "checkinDate": {
        "type": "string",
        "format": "date",
        "description": "Future check-in date in YYYY-MM-DD."
      },
      "checkoutDate": {
        "type": "string",
        "format": "date",
        "description": "Future checkout date in YYYY-MM-DD and after check-in."
      },
      "adults": {
        "type": "integer",
        "minimum": 1,
        "maximum": 4,
        "default": 2,
        "description": "Number of adult guests."
      },
      "currency": {
        "type": "string",
        "pattern": "^[A-Z]{3}$",
        "default": "USD",
        "description": "ISO 4217 currency code such as USD, EUR, or GBP."
      }
    },
    "required": [
      "hotelName",
      "checkinDate",
      "checkoutDate"
    ],
    "additionalProperties": false
  }
}