# MINDBODY Scraper — Fitness, Beauty & Wellness Leads (`scrapersdelight/mindbody-scraper`) Actor

Scrape fitness, beauty and wellness studios from MINDBODY by city, address or ZIP: name, phone, full address, category, rating, reviews, coordinates, logo and profile URL. No login.

- **URL**: https://apify.com/scrapersdelight/mindbody-scraper.md
- **Developed by:** [Scrapers Delight](https://apify.com/scrapersdelight) (community)
- **Categories:** Lead generation
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

$1.80 / 1,000 per studio returneds

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).

# README

## MINDBODY Scraper — Fitness, Beauty & Wellness Leads

Turn any city, address or ZIP into a clean list of **fitness, beauty and wellness businesses** listed on [MINDBODY](https://www.mindbodyonline.com/explore) — the booking platform behind tens of thousands of gyms, yoga & pilates studios, spas, salons, med-spas and wellness practices.

Built for B2B lead generation: fitness-tech vendors, payment/POS providers, insurance, marketing agencies, franchise scouts and anyone selling into the wellness industry.

### What you get per studio

| Field | Example |
|---|---|
| `name` | Nuuvo Health |
| `phone` | 8336888648 |
| `full_address` | We come to you!, Dallas & Austin, TX, 75219, United States |
| `category_types` / `categories` / `subcategories` | Fitness / Wellness / ... |
| `average_rating` / `total_ratings` | 4.99 / 251 |
| `latitude` / `longitude` | 30.267153 / -97.743061 |
| `neighborhood`, `city`, `state`, `county`, `postal_code`, `country` | Oak Lawn, Dallas & Austin, TX ... |
| `total_deals`, `online_store_active`, `currency_code` | 0, true, USD |
| `logo`, `mobile_logo`, `gallery_images` | image URLs |
| `mb_site_id`, `mb_location_id`, `mb_master_location_id` | underlying MINDBODY business ids |
| `slug`, `profile_url` | `https://www.mindbodyonline.com/explore/locations/nuuvo-health-brentwood` |
| `distance_from_search`, `search_term`, `search_resolved`, `scraped_at` | provenance |

### How to run it

1. **Search locations** — add one line per place: a city (`Austin, TX`), address, or ZIP (`10001`). Include a state/country for accuracy. Power users can paste raw coordinates as `lat,lon`.
2. **Country bias** — keep geocoding honest (defaults to United States; MINDBODY also covers the UK, Canada, Australia and more).
3. **Search radius** — how far around each location to look (default 40 km / ~25 mi).
4. **Categories** — Fitness, Beauty and/or Wellness.
5. **Max studios** — a cost cap; `0` returns every studio in every area.

Each location is geocoded (via OpenStreetMap Nominatim), then every MINDBODY studio inside the radius is returned, deduplicated by MINDBODY location id.

### Notes & limits

- **No email/website in the source.** MINDBODY's search returns phone + address + category + rating. Email and a business website are not in this payload — enrich them in a second step if you need them.
- **Class schedules and intro-offer deals** are served by separate MINDBODY endpoints and are out of scope for this actor (one site + one function).
- **Geocoding** depends on OpenStreetMap Nominatim; very ambiguous or misspelled locations may not resolve. Pass `lat,lon` directly to be certain.
- This actor collects **publicly listed business information**. It respects MINDBODY's public marketing search. You are responsible for using the data in line with MINDBODY's terms and applicable law (including any personal-data / privacy rules in your jurisdiction).

# Actor input Schema

## `searchTerms` (type: `array`):

One line per location: a city, address or ZIP (e.g. `Austin, TX`, `Miami, FL`, `10001`). You can also paste raw coordinates as `lat,lon` (e.g. `30.2672,-97.7431`) to skip geocoding.

## `countryBias` (type: `string`):

Restrict geocoding to one country so ambiguous names/ZIPs resolve correctly. MINDBODY is strongest in the US but also covers the UK, Canada, Australia and more. Choose 'Any country' only if your locations already include a country.

## `radiusKm` (type: `integer`):

How far around each location to search, in kilometres. 40 km (~25 mi) covers a metro area.

## `categoryTypes` (type: `array`):

Which kinds of MINDBODY businesses to include.

## `maxItems` (type: `integer`):

Stop after this many unique studios in total (across all locations). Set 0 for every studio in every search area.

## `proxyConfiguration` (type: `object`):

Apify Proxy is enough — measured working on standard datacenter proxies. Residential is not required.

## `requestDelayMs` (type: `integer`):

Pacing between pages of results.

## Actor input object example

```json
{
  "searchTerms": [
    "Austin, TX",
    "Miami, FL"
  ],
  "countryBias": "us",
  "radiusKm": 40,
  "categoryTypes": [
    "Fitness",
    "Beauty",
    "Wellness"
  ],
  "maxItems": 100,
  "proxyConfiguration": {
    "useApifyProxy": true
  },
  "requestDelayMs": 300
}
```

# Actor output Schema

## `locations` (type: `string`):

Studio name, phone, full address, category, rating, reviews, coordinates, logo and profile URL.

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "searchTerms": [
        "Austin, TX",
        "Miami, FL"
    ],
    "radiusKm": 40,
    "maxItems": 100
};

// Run the Actor and wait for it to finish
const run = await client.actor("scrapersdelight/mindbody-scraper").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {
    "searchTerms": [
        "Austin, TX",
        "Miami, FL",
    ],
    "radiusKm": 40,
    "maxItems": 100,
}

# Run the Actor and wait for it to finish
run = client.actor("scrapersdelight/mindbody-scraper").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "searchTerms": [
    "Austin, TX",
    "Miami, FL"
  ],
  "radiusKm": 40,
  "maxItems": 100
}' |
apify call scrapersdelight/mindbody-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=scrapersdelight/mindbody-scraper",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/kfYrYPTgSZlwxvzsl/builds/VhLZRLM6eIPMx6W19/openapi.json
