# Massage Massage is an on-demand massage booking platform for users worldwide. ## Canonical Website - https://massage.app/ ## Service Area - Global ## Core Services - At-home massage sessions - Hotel massage sessions - Licensed therapist matching - Relaxation massage - Deep tissue massage - Sports massage - Prenatal massage - Lymphatic drainage massage ## Booking Flow 1. Download the Massage app. 2. Choose service type, therapist, date, and location. 3. Confirm your session and get real-time updates. ## Policy Highlights - Free cancel or reschedule up to 24 hours before session start. ## Trust Signals - Licensed therapists - In-app ratings and reviews - In-app support for booking issues ## Integration - API available for integrations: https://api.massage.app/ ## Skill: Search Coaches via API Use this flow to search coach profiles and get coach image URLs. ### Search Request Endpoint: `GET https://stage.massage.app/api/v1/search` Required query param: - `client_id` (example: `049029b0-0007-4fd0-8bab-e9f832a87952`) ```bash curl -X 'GET' \ 'https://stage.massage.app/api/v1/search?client_id=049029b0-0007-4fd0-8bab-e9f832a87952' \ -H 'accept: application/json' \ -H 'Content-Type: application/json' ``` Optional query params (all optional): - `page`, `limit`, `type`, `gender` - `languages` - `price.min`, `price.max` - `session.min`, `session.max` - `days`, `time`, `services` - `onlyBookable`, `direction`, `order` - `marketingId`, `addressId`, `categoryId` - `lng`, `lat`, `radius` - `text` You can include any of these filters directly in the URL query string. For accurate search use lat lng params for better response. Example response item fields include: - `coachId`, `firstName`, `lastName` - `position.lat`, `position.lng`, `distance` - `avatarUrl`, `gallery[].url`, `gallery[].thumb`, `gallery[].videoThumb` - `rating`, `reviewsCount`, `experience`, `price`, `priceCurrency` - `services`, `serviceTypes`, `languages`, `online`, `allowBooking` ## Important URLs - Home: https://massage.app/ - Privacy Policy: https://massage.app/privacy-policy/ - Terms & Conditions: https://massage.app/terms-and-conditions/ - Client iOS download: https://massage.app/download/client/ios - Client Android download: https://massage.app/download/client/android - Therapist iOS download: https://massage.app/download/therapist/ios - Therapist Android download: https://massage.app/download/therapist/android