CrossFit Affiliate Gym Finder avatar

CrossFit Affiliate Gym Finder

Pricing

Pay per usage

Go to Apify Store
CrossFit Affiliate Gym Finder

CrossFit Affiliate Gym Finder

Find CrossFit affiliate gyms worldwide. Extract gym names, addresses, contact info, websites, and coordinates. Search by location or scrape all affiliates. Great for fitness apps and gym directories.

Pricing

Pay per usage

Rating

0.0

(0)

Developer

Fortuitous Pirate

Fortuitous Pirate

Maintained by Community

Actor stats

0

Bookmarked

3

Total users

2

Monthly active users

9 days ago

Last modified

Categories

Share

CrossFit - Affiliate Gym Finder

Overview

Scrape CrossFit affiliate gym locations worldwide. Extract gym names, addresses, coordinates, contact info, and more from 9,000+ CrossFit boxes. Affiliate Gym Finder.

Features

  • Search by keywords to find specific results
  • Filter results by category or type
  • Export data in JSON, CSV, or Excel formats
  • Extracts contact information
  • Includes location and address data
  • Control output volume with configurable result limits

Use Cases

  • Find - Find gym locations and compare amenities
  • Build - Build fitness facility databases for market analysis
  • Track - Track gym pricing and membership offerings
  • Research - Research fitness industry expansion and trends

Input Parameters

ParameterTypeDescriptionDefault
countryFilterstringFilter affiliates by country code (e.g., 'US', 'CA', 'GB'). Leave empty for a...``
stateFilterstringFilter affiliates by state code (e.g., 'CA', 'TX', 'NY'). Only works with US ...``
cityFilterstringFilter affiliates by city name (case-insensitive partial match). Leave empty ...``
searchLocationstringSearch near a specific location (e.g., 'Los Angeles, CA' or '90210'). Uses co...``
searchRadiusintegerRadius in kilometers to search around the location. Only used with searchLoca...50
searchLatnumberLatitude for radius search (optional, use instead of searchLocation).
searchLngnumberLongitude for radius search (optional, use instead of searchLocation).
fetchContactDetailsbooleanFetch email and website from individual gym detail pages. Slower but provides...false
maxItemsintegerMaximum number of affiliates to return. Set to 0 for unlimited.100
proxyConfigurationobjectProxy configuration for bypassing rate limits.{...}

Output Example

Each result contains structured data like this:

{
"name": "CrossFit Sample Item",
"address": "123 Main St",
"city": "San Francisco",
"state": "CA",
"phone": "(555) 123-4567",
"hours": "Mon-Fri: 9AM-5PM",
"amenities": [
"Feature 1",
"Feature 2",
"Feature 3"
],
"url": "https://example.com/item/12345"
}

Pricing

This actor uses pay-per-result pricing:

  • $0.001 per result
  • $1.00 per 1,000 results

No monthly fees. You only pay for what you scrape. Apify Free plan includes $5/month in platform credits.

How to Run

Apify Console

  1. Go to the CrossFit - Affiliate Gym Finder actor page
  2. Configure your input parameters
  3. Click Start and wait for the results
  4. Download data in JSON, CSV, or Excel format

API

curl -X POST "https://api.apify.com/v2/acts/fortuitous_pirate~crossfit-affiliate-scraper/runs?token=YOUR_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{"maxItems": 10}'

Python SDK

from apify_client import ApifyClient
client = ApifyClient("YOUR_API_TOKEN")
run = client.actor("fortuitous_pirate/crossfit-affiliate-scraper").call(
run_input={"maxItems": 10}
)
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
print(item)

Integration

Connect CrossFit - Affiliate Gym Finder with your existing tools and workflows:

  • API access - Programmatic access via Apify API
  • Webhooks - Get notified when scraping completes
  • Scheduling - Set up recurring runs on any schedule
  • Zapier / Make - Connect with 5,000+ apps via Apify integrations
  • Python / Node.js SDKs - Native client libraries for easy integration