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
| Field | Type | Required | Description |
|---|---|---|---|
airport_code | string | yes | IATA code, e.g. LHR |
terminal | string | no | Terminal filter, e.g. T5 |
date | string | no | ISO-8601 date |
https://cloud.vanitypass.com with X-Environment: Sandbox. No real bookings or charges. Production access: contact us./v1/travel/loungesSandbox 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.
https://cloud.vanitypass.com with X-Environment: Sandbox. No real bookings or charges. Production access: contact us./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.
| Field | Type | Required | Description |
|---|---|---|---|
date | string | yes | ISO-8601 date |
guests | integer | yes | Number of guests |
https://cloud.vanitypass.com with X-Environment: Sandbox. No real bookings or charges. Production access: contact us./v1/travel/lounges/{lounge_id}/availabilitySandbox 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}'