Skip to main content
This guide explains the end-to-end lounge booking journey: what your UI should do, what to store, and what to show the user after booking.
1

1) Search lounges at an airport

You show lounge options for an airport (IATA code), including pricing for adults/children.
2

2) User selects an offer and variant

Your UI should clearly show:
  • terminal and location (where to go)
  • opening hours (with timezone)
  • included features and paid add-ons
  • restrictions (dress code, age limits, etc.)
3

3) Create an order (one per guest)

Create an order for the guest and store the returned order ID in your system.
4

4) Show access code and instructions

Retrieve order details and display the access code the guest presents at reception.

What to show in your UI

When the user browses lounges, show:
  • lounge name and terminal
  • where to find it (for example “after security” and gate context)
  • opening hours (with timezone)
  • included features and paid add-ons
  • restrictions (dress code, age limits, etc.)
You typically collect:
  • guest name
  • flight number (when applicable)
  • visit date
  • guest type (adult/child) if pricing differs
After the booking is confirmed, show:
  • booking status
  • lounge location instructions
  • the access code the guest presents at reception

UX guidance (what to communicate)

Users miss lounges because the terminal/location is unclear. Put the terminal, gate context, and “after security” style hints near the access code.
If a feature is marked payable, explain that it may require payment on-site.
This API uses one order per guest. If the user needs to book for multiple travelers, your UI should support repeating the booking flow.

FAQ

Can a customer book for multiple guests? Yes. Create a separate booking for each guest. Each booking has its own access code. What does payable: true mean on a feature? It means the amenity is available at the lounge but may require an additional payment on-site (e.g., premium drinks, spa services). What if the lounge is closed at the time of visit? Check working hours and the lounge open status before you display the offer or allow booking.