OrbTop

Capezio Dancewear Product Catalog Scraper

ECOMMERCE

Capezio Dancewear Product Catalog Scraper

Scrapes the complete Capezio dancewear product catalog from capezio.com. Extracts dance shoes, apparel, and accessories with full product details including SKUs, pricing, available sizes, colors, stock status, images, and descriptions.

What data you get

Each product record includes:

Field Description
product_id Shopify product ID
sku Primary variant SKU
product_name Product name
category Product type (e.g. Ballet, Tap, Jazz)
product_line Brand/vendor line
price Lowest variant price in USD
currency Currency code (USD)
sizes_available Array of available size values
colors_available Array of available color values
in_stock True if any variant is available for purchase
product_url Canonical URL on capezio.com
image_urls Array of product image URLs
description Plain-text product description
tags Shopify product tags

How it works

The scraper uses Capezio's Shopify product API (/products.json?limit=250&page=N) to paginate through the full catalog without rendering JavaScript. Each page returns up to 250 products with complete variant, image, and pricing data. The catalog contains approximately 750 products across 3 pages.

No proxy is required — the Shopify API endpoints are publicly accessible with no authentication or bot protection.

Input

Parameter Type Required Description
maxItems Integer Yes Maximum number of products to return. Use a large number (e.g. 10000) for the full catalog (~750 products).

Example input

{
  "maxItems": 100
}

Output sample

{
  "product_id": "9139455656211",
  "sku": "3564M_MCA",
  "product_name": "Camisole Bra w/ BraTek®",
  "category": "Dance Accessories",
  "product_line": "Capezio",
  "price": 28.0,
  "currency": "USD",
  "sizes_available": ["XS", "S", "M", "L", "XL"],
  "colors_available": ["Nude", "Black", "White"],
  "in_stock": true,
  "product_url": "https://www.capezio.com/products/camisole-bra-with-bratek",
  "image_urls": [
    "https://cdn.shopify.com/s/files/1/0840/3150/4659/files/capezio_camisole_bra_mocha.jpg"
  ],
  "description": "The Camisole Bra with Bratek is a flawless foundation under costumes...",
  "tags": ["bra", "camisole", "foundation", "women"]
}

Use cases

  • Retail arbitrage — monitor Capezio prices and inventory levels
  • Dance studio procurement — bulk catalog for studio purchasing workflows
  • Price comparison — feed Capezio pricing into comparison tools
  • Competitive intelligence — track Capezio's catalog alongside competitor inventory
  • Data enrichment — enrich product databases with Capezio SKUs, images, and descriptions

Notes

  • The full catalog (~750 products) completes in under 2 minutes at the default concurrency.
  • maxItems is applied after fetching each page; set it to a high number (e.g. 10000) to scrape everything.
  • Product availability (in_stock) reflects the Shopify storefront availability flag, which may differ from actual warehouse stock.