VANITYPASS
White-label APITravel Services

Fitness Centers

Find and check availability at airport gyms and wellness facilities.

Fitness Centers

Find gyms, spas, and wellness facilities at airports. Check real-time session availability before booking.

Search Fitness Centers

POST /v1/travel/fitness

FieldTypeRequiredDescription
airport_codestringyesIATA code, e.g. SIN
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/fitness

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/fitness' \
  -H 'Content-Type: application/json' \
  -H 'X-Environment: Sandbox' \
  -d '{"airport_code":"SIN","date":"2026-07-01"}'

Get Fitness Center Details

GET /v1/travel/fitness/{fitness_id}

Full details — equipment available, hours, shower facilities, location in terminal.

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/fitness/{fitness_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/fitness/{fitness_id}' \
  -H 'Content-Type: application/json' \
  -H 'X-Environment: Sandbox' \

Check Availability

POST /v1/travel/fitness/{fitness_id}/availability

Available time slots for a 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/fitness/{fitness_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/fitness/{fitness_id}/availability' \
  -H 'Content-Type: application/json' \
  -H 'X-Environment: Sandbox' \
  -d '{"date":"2026-07-01","guests":1}'