← Back to all apps

BE-A

Travelby FLAE Robotics
Launched Mar 11, 2026 on ChatGPT

BE-A enables to search for available hotels in your target area for real-time availability and prices. And you book directly with the hotel where you can leverage loyalty rates, discount for registered members and much more.

With direct connection to hotel's Availability and Rates systems, and in near future also to their Concierge and Booking systems, this is a very powerful all-round Hotel Booking Assistant.

2ChatGPT Tools
FLAE RoboticsDeveloper
TravelCategory

Available Tools

Get Room Availability across Hotels

get_availability
Full Description

Get available room offers from one or more hotels and display them in an interactive comparison widget with booking buttons.

Pass a list of hotel objects, each with hotel_name and city. All hotels are queried in parallel with the same dates and guest configuration. Optionally specify a currency to convert all prices.

The server automatically tries four strategies per hotel to maximise the chance of finding availability: 1. Single room, exact dates requested 2. Multiple rooms, exact dates (when no single room fits all guests) 3. Single room, extended checkout (when a minimum-stay restriction applies) 4. Multiple rooms, extended checkout (last resort)

IMPORTANT: Use English city names (e.g., "Prague" not "Praha", "Vienna" not "Wien").

Args: hotels: List of objects, each with hotel_name (str) and city (str, English name). check_in_date: Check-in date in YYYY-MM-DD format.

Parameters (4 required, 4 optional)
Required
adults_countinteger
check_in_datestring
check_out_datestring
hotelsarray
Optional
children_agesarray
Default: null
children_countinteger
Default: 0
currencystring
Default: null
languagestring
Default: null

List Hotels Available via the App

list_hotels
Full Description

List available hotels, optionally filtered by country/city and/or a geographic bounding box. All filters are optional and combinable.

Returns a text summary of matching hotels for discovery purposes. Use get_availability to display results with the interactive widget.

IMPORTANT: Use English names only (e.g., "Prague" not "Praha", "Vienna" not "Wien").

Args: country: Optional country name to filter by (case-insensitive, partial match). English names only. city: Optional city name to filter by (case-insensitive, partial match). English names only. sw_lat: Optional southwest corner latitude for bounding-box search. sw_lng: Optional southwest corner longitude for bounding-box search. ne_lat: Optional northeast corner latitude for bounding-box search. ne_lng: Optional northeast corner longitude for bounding-box search. language: Optional ISO language code (e.g., 'en', 'cs'). Defaults to 'en'. Only 'en' and 'cs' supported.

Parameters (0 required, 7 optional)
Optional
citystring
Default: null
countrystring
Default: null
languagestring
Default: null
ne_latnumber
Default: null
ne_lngnumber
Default: null
sw_latnumber
Default: null
sw_lngnumber
Default: null