VANITYPASS
B2B APITravel

Airport Lounges

Search lounges, get details, and check availability.

Airport Lounges

Search available lounges at an airport, retrieve full details, and check real-time capacity before booking.

Search Lounges

POST /v1/travel/lounges

FieldTypeRequiredDescription
airport_codestringyesIATA code, e.g. LHR
terminalstringnoTerminal filter, e.g. T5
datestringnoISO-8601 date
Sandbox-only. Try-it requests target https://cloud.vanitypass.com with X-Environment: Sandbox. No real bookings or charges. Production access: contact us.
POST/v1/travel/lounges

Sandbox credentials

Keys never leave your browser — they are sent only to cloud.vanitypass.com with X-Environment: Sandbox.

curl -X POST 'https://cloud.vanitypass.com/v1/travel/lounges' \
  -H 'Content-Type: application/json' \
  -H 'X-Environment: Sandbox' \
  -d '{"airport_code":"DXB","date":"2026-07-01"}'

Get Lounge Details

GET /v1/travel/lounges/{lounge_id}

Returns full lounge info — amenities, operating hours, location, photos, dress code.

Sandbox-only. Try-it requests target https://cloud.vanitypass.com with X-Environment: Sandbox. No real bookings or charges. Production access: contact us.
GET/v1/travel/lounges/{lounge_id}

Sandbox credentials

Keys never leave your browser — they are sent only to cloud.vanitypass.com with X-Environment: Sandbox.

curl -X GET 'https://cloud.vanitypass.com/v1/travel/lounges/{lounge_id}' \
  -H 'Content-Type: application/json' \
  -H 'X-Environment: Sandbox' \

Check Availability

POST /v1/travel/lounges/{lounge_id}/availability

Real-time capacity and pricing for a specific date and guest count.

FieldTypeRequiredDescription
datestringyesISO-8601 date
guestsintegeryesNumber of guests
Sandbox-only. Try-it requests target https://cloud.vanitypass.com with X-Environment: Sandbox. No real bookings or charges. Production access: contact us.
POST/v1/travel/lounges/{lounge_id}/availability

Sandbox credentials

Keys never leave your browser — they are sent only to cloud.vanitypass.com with X-Environment: Sandbox.

curl -X POST 'https://cloud.vanitypass.com/v1/travel/lounges/{lounge_id}/availability' \
  -H 'Content-Type: application/json' \
  -H 'X-Environment: Sandbox' \
  -d '{"date":"2026-07-01","guests":2}'