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
| Field | Type | Required | Description |
|---|---|---|---|
airport_code | string | yes | IATA code, e.g. SIN |
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/fitnessSandbox 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.
https://cloud.vanitypass.com with X-Environment: Sandbox. No real bookings or charges. Production access: contact us./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.
| 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/fitness/{fitness_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/fitness/{fitness_id}/availability' \
-H 'Content-Type: application/json' \
-H 'X-Environment: Sandbox' \
-d '{"date":"2026-07-01","guests":1}'