USAudioMart & CanuckAudioMart Listings Scraper avatar

USAudioMart & CanuckAudioMart Listings Scraper

Pricing

Pay per event

Go to Apify Store
USAudioMart & CanuckAudioMart Listings Scraper

USAudioMart & CanuckAudioMart Listings Scraper

Scrapes used audio equipment listings from USAudioMart.com and CanuckAudioMart.com — the two largest North American audiophile classified sites. Returns listing details including price, condition, seller feedback, and photos.

Pricing

Pay per event

Rating

0.0

(0)

Developer

BowTiedRaccoon

BowTiedRaccoon

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

10 days ago

Last modified

Categories

Share

USAudioMart & CanuckAudioMart — Used Audio Equipment Listings Scraper

Scrape used audio equipment listings from USAudioMart and CanuckAudioMart — North America's two largest audiophile classifieds sites. Returns structured listing data including price, condition, seller info, description, and photos for hardware and software categories.


What You Get

Each listing record contains up to 19 fields:

FieldDescription
listing_idNumeric listing identifier from the source site
titleListing title (FOR SALE / FOR TRADE prefix stripped)
manufacturerManufacturer name (null — extract from title if needed)
modelModel name (null — extract from title if needed)
categoryEquipment category (null — hardware or software)
priceAsking price as a float (e.g. 499.00)
currencyUSD (USAudioMart) or CAD (CanuckAudioMart)
conditionNormalized condition: Mint, Excellent, Very Good, Good, Fair, Poor, New, or Used
descriptionFull listing description, up to 5,000 characters
countryUS or CA
regionSeller's city or region
seller_usernameSeller's account username
seller_feedbackSeller feedback score (null — not extracted)
seller_member_sinceMember since date (null — not extracted)
shipping_optionsShipping notes from the listing
listing_urlDirect URL to the listing detail page
source_siteusaudiomart or canuckaudiomart
image_urlsPipe-separated image URLs (up to 20 per listing)
listed_atDate the listing was posted
scraped_atISO-8601 timestamp of extraction

Quick Start

Default run — scrapes both sites, returns up to 50 listings:

{
"sites": ["usaudiomart", "canuckaudiomart"],
"maxItems": 50
}

USAudioMart only:

{
"sites": ["usaudiomart"],
"maxItems": 100
}

CanuckAudioMart only (Canadian market):

{
"sites": ["canuckaudiomart"],
"maxItems": 100
}

Input Parameters

ParameterTypeDefaultDescription
sitesarray["usaudiomart", "canuckaudiomart"]Which sites to scrape. Valid values: usaudiomart, canuckaudiomart.
maxItemsinteger50Maximum total listings across all selected sites. Items are split 50/50 between sites when both are selected.

Sample Output

{
"listing_id": "649943063",
"title": "McIntosh C22 Preamp",
"manufacturer": null,
"model": null,
"category": null,
"price": 3200.00,
"currency": "USD",
"condition": "Excellent",
"description": "Original McIntosh C22 preamplifier in excellent working condition. All tubes present and tested...",
"country": "US",
"region": "Seattle",
"seller_username": "audiophile_pacific",
"seller_feedback": null,
"seller_member_since": null,
"shipping_options": "Ships CONUS",
"listing_url": "https://www.usaudiomart.com/details/649943063-mcintosh-c22-preamp/",
"source_site": "usaudiomart",
"image_urls": "https://img.usaudiomart.com/uploads/large/649943063/xyz.jpg",
"listed_at": "May 20, 2026 9:14am (PST)",
"scraped_at": "2026-05-25T21:20:00.000Z"
}

Use Cases

  • Audiophile price tracking — Monitor asking prices for specific equipment models across both markets to understand fair market value and price trends over time.
  • Dealer and reseller sourcing — Identify underpriced listings for turnaround opportunities in the North American used hi-fi market.
  • Market research — Analyze which brands, models, and equipment categories dominate the used market, and track condition distributions for pricing models.
  • Price guides and valuation tools — Feed structured listing data into a valuation database to provide real-world pricing data for insurance, estate, and appraisal purposes.
  • Inventory monitoring — Alert on new listings matching specific search criteria (e.g. McIntosh amplifiers, Klipsch speakers, vintage turntables) without manual daily checks.
  • Academic and economic research — Study secondary market dynamics for consumer electronics and audio equipment as a proxy for disposable income and hobby spending patterns.

How It Works

The scraper crawls both sites' hardware and software classifieds pages using residential proxies (both sites block datacenter IPs). It discovers listings from the category index pages, then visits each detail page to extract the full listing data including price, condition, description, seller info, and photos.

Pagination is handled automatically — the scraper follows ?page=N links up to 50 pages per category. The maxItems cap stops the run early once enough listings have been collected.

Both sites share identical URL and HTML structure, built on the same classifieds platform.


Notes

  • Price is extracted from the listing detail page's info table. Some listings may have no price (trade-only listings) — price will be null in those cases.
  • manufacturer and model are null — they are not reliably parseable from free-text titles without an equipment database lookup. Extract them from title with your own logic.
  • image_urls is a pipe (|) separated string of up to 20 image URLs per listing.
  • Featured listings on the index page link via a redirect URL; the scraper follows these redirects automatically to reach the canonical detail page.