Bowmark AIdocs

Ayres Hotels

Boutique Southern California hotel group. checkRates is live — it reads the site's own IBE (Internet Booking Engine, an Amadeus Hospitality / TravelClick…

Boutique Southern California hotel group. checkRates is live — it reads the site's own IBE (Internet Booking Engine, an Amadeus Hospitality / TravelClick widget on reservations.ayreshotels.com) and returns the REAL per-night minimum rate + availability status for a property and date range, the same live pricing the site's own date-picker renders before any guest information is entered.

Domain: ayreshotels.com

Also known as: Ayres Hotels, Ayres Hotel, ayreshotels.com

Call it directly

bowmark.providers.ayreshotels.checkRates(args: object): Promise<CheckRatesResult>

Functions

FunctionWhat it does
checkRatesChecks a property's real live rate/availability for a date range.

Types

interface AyreshotelsRateDay {
  date: string;
  isAvailable: boolean;
  minRate: number | null;
  currency: string | null;
  availStatus: string | null;
}

interface CheckRatesResult {
  property: string;
  hotelCode: number | null;
  checkIn: string;
  checkOut: string;
  currency: string | null;
  days: AyreshotelsRateDay[];
}