Guitar Center Scraper avatar

Guitar Center Scraper

Pricing

from $3.00 / 1,000 results

Go to Apify Store
Guitar Center Scraper

Guitar Center Scraper

Scrape Guitar Center's musical instrument catalog. Browse by department (guitars, amps, drums, keyboards, and more), New Arrivals, Deals, or Used Gear. Get price, brand, condition, ratings, stock, and full product details.

Pricing

from $3.00 / 1,000 results

Rating

0.0

(0)

Developer

Crawler Bros

Crawler Bros

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

3 days ago

Last modified

Share

Scrape Guitar Center's musical instrument catalog. Browse by department (guitars, amps, drums, keyboards, DJ gear, and more), New Arrivals, Deals, or Used Gear — or fetch specific products by their page URL. Get price, brand, condition, review ratings, in-stock stores, and full product details (description, features, specifications, images).

What this actor does

  • Three modes: browse (department/category listing), search (free-text keyword search), and byUrl (exact product lookup)
  • 17 departments and special sections: Guitars, Amps & Effects, Keyboards & MIDI, Drums & Percussion, DJ Equipment, Bass, Recording Gear, Live Sound, Accessories, Microphones & Wireless, Music Software, Lighting & Stage Effects, Band & Orchestra, New Arrivals, All Deals, Used Gear, Daily Pick
  • Filters: brand, price range, condition (New/Used), used condition grade, minimum rating
  • Optional full-detail enrichment: description, features, specifications, breadcrumb categories, full-size images
  • Empty fields are omitted — every field in a record is real, populated data

Output per product

  • skuId, productId — internal identifiers
  • title, color
  • brand
  • price, listPrice, onSale, discountAmount
  • condition (New / Used), conditionGrade (Used items: Excellent/Great/Good/Fair/Poor)
  • rating (out of 10), reviewCount
  • itemNumber, partNumber, upc
  • productUrl — canonical Guitar Center product page
  • imageUrl (+ imageUrlMedium, imageUrlThumbnail with full details)
  • storesInStock[], storeCount, storeName — physical store availability
  • inStoreOnly — true if this SKU is not available for online purchase (store-only)
  • promoTags[] — e.g. "Price Drop"
  • monthlyPayment, financingMonths — Easy Pay financing terms
  • quickSpecs — flat spec summary available on most listings without fetchFullDetails
  • quickFeatures — short feature highlights available on most listings without fetchFullDetails
  • variants[], variantCount — other colors/conditions of this same product (each with skuId, title, condition, price, productUrl, imageUrl)
  • description, features[], specifications[] (requires fetchFullDetails)
  • breadcrumbCategories[], categoryName (requires fetchFullDetails)
  • inStock (requires fetchFullDetails)
  • relatedArticles[] (requires fetchFullDetails)
  • recordType: "product", scrapedAt

Input

FieldTypeDefaultDescription
modestringbrowsebrowse / search / byUrl
categoryselectGuitarsDepartment/section to browse (mode=browse)
searchQuerystringFree-text keyword search (mode=search), e.g. Fender Player
productUrlsarrayExact product page URLs (mode=byUrl)
brandstringFilter to an exact brand (case-insensitive)
minPrice / maxPriceintegerUSD price range
conditionselectNew / Used
conditionGradeselectExcellent / Great / Good / Fair / Poor (Used items)
minRatingintegerMinimum average rating (0-10)
sortByselectrelevanceSort the collected batch: relevance / price asc / price desc / rating desc / name A-Z
fetchFullDetailsbooleanfalseFetch each product's detail page for description/specs/images
maxItemsinteger50Hard cap on emitted records (1-1000)

Example input

{
"mode": "browse",
"category": "Guitars",
"brand": "Fender",
"condition": "New",
"maxPrice": 1000,
"maxItems": 50
}
{
"mode": "search",
"searchQuery": "Fender Player",
"maxItems": 24
}
{
"mode": "byUrl",
"productUrls": [
"https://www.guitarcenter.com/Ibanez/GRX70QA-Electric-Guitar-Transparent-Blue-Burst-1313248770709.gc"
]
}

Use cases

  • Price monitoring — track pricing and deals across Guitar Center's catalog.
  • Market research — analyze brand/category coverage, average ratings, and used-gear pricing.
  • Inventory intelligence — check which physical stores carry a given product.
  • Competitive analysis — compare specs, features, and pricing against your own catalog.

Data source

guitarcenter.com's product pages are server-rendered (Next.js) with a complete product-search dataset embedded in every category and product page. The actor reads that same server-rendered data. Image and media URLs are served from Guitar Center's CDN domains and are directly accessible.

Note on site access: guitarcenter.com's own domain actively blocks automated/datacenter traffic at the network edge (a standard e-commerce anti-bot measure). This actor retrieves the identical server-rendered page content through a mirrored fetch that is not subject to that block, so data returned is byte-for-byte the same live catalog data a shopper's browser would see. productUrl values are the real, canonical Guitar Center product URLs — they work normally in any regular web browser.

FAQ

Why is brand a free-text field instead of a dropdown? Guitar Center carries several hundred brands across all departments — too many for a clean dropdown. Enter the exact brand name as shown on the site (e.g. Fender, Ibanez, Yamaha).

Does sortBy sort the entire catalog or just what I fetched? It sorts the batch of records collected in this run (up to maxItems). Guitar Center's site does not expose a server-side sort parameter, so a full-catalog sort isn't available — combine a narrower category/filter with a higher maxItems for a more complete sorted view.

Why is rating out of 10, not 5? Guitar Center's own review widget rates products on a 0-10 scale.

Can I search by free-text keyword? Yes — use mode: "search" with a searchQuery. Note that Guitar Center's search endpoint only returns a single results page (up to ~24-45 best matches depending on match quality); it doesn't support paging through the full result set the way browse mode does. For exhaustive coverage of a topic, combine category + filters (brand, price, condition) instead.