OrbTop

B&H Photo Pro Audio Catalog Scraper

ECOMMERCE

B&H Photo Pro Audio Catalog Scraper

Scrapes B&H Photo's Pro Audio catalog and returns structured product data including SKU, pricing, stock status, ratings, specs, and features. Supports microphones, studio monitors, audio interfaces, mixers, headphones, signal processors, and podcast gear. Also optionally scrapes used and B-stock inventory.

What it does

This actor crawls B&H Photo Video Pro Audio (bhphotovideo.com) catalog pages across multiple Pro Audio sub-categories. For each product, it:

  1. Crawls sub-category listing pages to discover product URLs
  2. Fetches each product detail page
  3. Extracts structured data from JSON-LD product schemas and HTML selectors

Cloudflare protection on B&H is bypassed via CapSolver's AntiCloudflareTask — the clearance cookie is obtained once and reused for the entire run.

Input

Field Type Default Description
maxItems integer Required. Maximum number of products to return
categories array ["microphones"] Sub-categories to scrape. Leave empty for all.
includeUsed boolean false Also scrape used/B-stock listings

Valid category values

  • microphones — Large-diaphragm condensers, dynamic, ribbon, tube, USB, wireless, lavalier, and more
  • studio-monitors — Powered studio monitors
  • audio-interfaces — USB/Thunderbolt audio interfaces
  • mixers — Analog and digital mixing consoles
  • studio-headphones — Closed-back and open-back studio headphones
  • signal-processors — Compressors, EQs, preamps, effects processors
  • podcast-streaming-broadcasting — Podcast and streaming gear
  • amplifiers-preamplifiers — Headphone amps and mic preamps

Output

Each dataset record contains:

Field Type Description
product_name string Full product name
manufacturer string Manufacturer/brand name
sku string B&H Photo SKU number
mfr_part_number string Manufacturer part number
department string Always "Pro Audio"
category string Top-level product category
sub_category string Sub-category name
price_usd number Current selling price in USD
msrp_usd number Manufacturer suggested retail price
in_stock boolean Whether the product is currently in stock
is_b_stock_used boolean Whether this is a used or B-stock listing
rating number Average customer rating (0–5)
review_count integer Total number of customer reviews
bullet_specs string Key specifications (pipe-separated)
features string Product features (pipe-separated)
product_url string Direct URL to the product page
image_urls string Product image URLs (pipe-separated)
scraped_at string ISO 8601 timestamp

Example output

{
  "product_name": "Warm Audio WA-47jr Large-Diaphragm FET Condenser Microphone (Black)",
  "manufacturer": "Warm Audio",
  "sku": "1601321-REG",
  "mfr_part_number": "WA-47JR-BLK",
  "department": "Pro Audio",
  "category": "Microphones",
  "sub_category": "Large-Diaphragm Condenser Microphones",
  "price_usd": 299.0,
  "msrp_usd": 399.0,
  "in_stock": true,
  "is_b_stock_used": false,
  "rating": 4.8,
  "review_count": 156,
  "product_url": "https://www.bhphotovideo.com/c/product/...",
  "scraped_at": "2026-06-05T04:45:00.000Z"
}

Notes

  • B&H Photo requires Cloudflare bypass via CapSolver — run costs include captcha-solving fees priced into the PPE coefficient
  • Product images are CDN-hosted and may not be permanently accessible at the returned URLs
  • Used/B-stock listings are available via the includeUsed flag and populate is_b_stock_used: true
  • The actor respects B&H's rate limits with 500ms delays between detail page fetches