OrbTop

DanceUS.org Studio & School Directory Scraper

LEAD GENERATIONBUSINESS

DanceUS.org Studio & School Directory Scraper

Extract structured data for US dance studios and schools from DanceUS.org — the largest dedicated US dance-studio directory. Get name, address, phone, website, dance styles, and community rating for every listed studio, ready for export to CSV or JSON.

What it does

This actor crawls the paginated studio directory on DanceUS.org and visits each studio detail page to collect:

  • Studio name and unique identifier
  • Full street address, city, state, and ZIP code
  • Phone number and website
  • Dance styles offered (Ballet, Jazz, Hip Hop, Salsa, Ballroom, and dozens more)
  • Community upvote rating
  • Direct link to the DanceUS.org listing

The directory contains over 5,000 active US studios across all 50 states. A full run captures all available listings.

Use cases

  • B2B lead generation for dance-studio software (scheduling, billing, marketing platforms)
  • Insurance prospecting targeting fitness and performing-arts businesses
  • Music licensing outreach to venues that teach licensed repertoire
  • Wholesale and uniform sales to dance costume and apparel suppliers
  • Market research on dance-style geographic distribution across the US

Input

Field Type Default Description
maxItems integer 15 Maximum number of studio records to return. Leave at a high value (or set to the full expected count) to capture all listings.

Output

Each record in the dataset contains:

Field Type Description
studio_id string Unique slug from the DanceUS.org URL
studio_name string Studio or school name
address string Street address
city string City
state string US state abbreviation
zip string ZIP/postal code
phone string Studio phone number
website string Studio website domain or URL
styles_offered string Comma-separated dance styles (e.g. Ballet, Jazz, Hip Hop)
rating integer Community upvote count from DanceUS.org
source_url string Full URL of the studio's DanceUS.org listing page
scrapedAt string ISO-8601 scrape timestamp

Example output

{
  "studio_id": "rock-star-dance-fitness-burbank-ca-5013",
  "studio_name": "Rock Star Dance Fitness",
  "address": "517 N Glenoaks Blvd",
  "city": "Burbank",
  "state": "CA",
  "zip": "",
  "phone": "(818)492-4729",
  "website": "rockstardancefitness.com/",
  "styles_offered": "Hip Hop, Ballet, Zumba, Jazz, Modern dance",
  "rating": 0,
  "source_url": "https://www.danceus.org/studio/rock-star-dance-fitness-burbank-ca-5013/",
  "scrapedAt": "2026-05-30T15:35:20.771Z"
}

Notes

  • The directory is publicly accessible — no account or login required.
  • Some listings may be international studios that appear in the US directory. Address parsing defaults to blank state/ZIP for non-US address formats.
  • Phone and website fields are present in the page source even when displayed behind a login prompt in the browser UI.
  • Run time scales with maxItems — 5,000 records takes roughly 30–60 minutes at the default concurrency setting.