OrbTop

Caloi Bicicletas Brasil — Catalog Scraper

ECOMMERCE

Caloi Bicicletas Brasil — Catalog Scraper

Scrapes the full product catalog from caloi.com, the official website of Caloi — Brazil's #1 bicycle brand, founded in 1898 and owned by Dorel Industries (also the parent company of Cannondale). Extracts ~40 active SKUs spanning mountain bikes, road bikes, kids' bikes, balance bikes, and e-bikes, including MSRP prices in BRL, technical specifications, color options, and gallery images.

What You Get

Each record contains the official manufacturer data directly from the source:

Field Description
product_id Caloi's internal product ID
sku URL slug identifier
product_name Full product name
category Product category (e.g. Cross Country, 2-5 anos, E-Bike)
frame_type Frame material and description
wheel_size Wheel/rim size specification
drivetrain Drivetrain component group
msrp_brl Manufacturer's suggested retail price in Brazilian Real
currency Always BRL
color_options List of available color hex codes
description Product description
specs Full technical specification key-value map
image_urls Product gallery image URLs
in_stock Whether a find-retailer link is present (proxy for availability)
source_url The product page URL
scraped_at ISO-8601 scrape timestamp

Use Cases

  • Retail arbitrage: Compare MSRP against secondary-market prices on OLX Brasil and Mercado Livre
  • Parts compatibility: Access Brazil-specific spec sheets for Caloi's proprietary component specs
  • Insurance underwriting: Replacement value lookup for bicycle insurance
  • Cycling journalism: Reference pricing and specs for product reviews and comparisons
  • Competitive benchmarking: Track Brazil's flagship DTC bike brand catalog and pricing

Inputs

Parameter Type Description
maxItems integer Maximum products to scrape. Leave empty to scrape all ~40 SKUs. Default: 10

Example Output

{
  "product_id": "44023",
  "sku": "elite-carbon-fs-sport-axs",
  "product_name": "Elite Carbon FS Sport AXS",
  "category": "Cross Country",
  "frame_type": "Quadro de Carbono desenvolvido pela CALOI | Hybrid Travel 100/110mm | Fork Travel 120mm",
  "wheel_size": "Vzan Overland 32F",
  "drivetrain": "Sram S1000 T-Type 12V",
  "msrp_brl": 29990,
  "currency": "BRL",
  "color_options": ["#1500b8"],
  "specs": {
    "Quadro": "Quadro de Carbono...",
    "Garfo": "RockShox Recon Silver 120mm",
    "Câmbio traseiro": "Sram S1000 T-Type 12V",
    "Freios": "Sram Level - 160/180mm"
  },
  "image_urls": ["https://caloi.com/wp-content/uploads/2025/10/Elite-Carbon-FS-AXS-Lateral-1600x1067.png"],
  "in_stock": true,
  "source_url": "https://caloi.com/produto/elite-carbon-fs-sport-axs/",
  "scraped_at": "2026-06-11T22:28:48.871Z"
}

Notes

  • The scraper reads the official Yoast SEO product sitemap (https://caloi.com/produto-sitemap.xml), which Caloi maintains and updates as new SKUs are added or discontinued.
  • Prices are in Brazilian Real (BRL) and reflect MSRP — the catalog truth for the Brazilian market. Actual street prices on Mercado Livre and OLX will vary.
  • Caloi does not sell directly online; the in_stock field reflects whether a "Find Retailer" link is present on the product page.
  • Full-catalog runs complete in under 2 minutes at default concurrency.