Reverb Listings Scraper avatar

Reverb Listings Scraper

Under maintenance

Pricing

from $5.00 / 1,000 results

Go to Apify Store
Reverb Listings Scraper

Reverb Listings Scraper

Under maintenance

Scrape active gear listings from Reverb.com by keyword, make, condition, price, and year. Perfect for musicians, dealers, and price-tracking arbitrage tools.

Pricing

from $5.00 / 1,000 results

Rating

0.0

(0)

Developer

Anthony Ts

Anthony Ts

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

2 days ago

Last modified

Categories

Share

Scrape active gear listings from Reverb.com — the world's largest online marketplace for musical instruments. Get prices, conditions, sellers, and photos for any guitar, pedal, amp, or piece of gear.

Search terms this actor covers: reverb scraper, reverb.com scraper, reverb listings scraper, reverb price research, used guitar prices, musical instrument price tracker, used gear market data, reseller price research.


What It Does

  • Searches Reverb by keyword, make, or category
  • Filters by condition (mint, excellent, very-good, good, fair, poor), price range, and year range
  • Sorts by newest listings, price, or relevance
  • Paginates automatically until maxItems is reached
  • Extracts structured data: title, make, model, year, condition, price, original price, shop name, category, photo, and listing URL

Uses Reverb's public REST API (api.reverb.com) — no browser, no Cloudflare, no proxy required. Returns clean JSON natively.


Use Cases

WhoWhat they do with it
Gear resellersResearch current market prices before buying or listing an instrument
MusiciansTrack price history for a specific make/model (e.g. Fender Stratocaster)
Shop ownersMonitor competitor listings and price drops in your category
Price alert buildersFeed data into a bot that notifies you when a target item drops below a threshold
Developers / analystsBuild used-gear price databases, dashboards, or trend reports

Input

{
"query": "fender stratocaster",
"make": "Fender",
"condition": "excellent",
"priceMin": 500,
"priceMax": 1500,
"yearMin": 2000,
"yearMax": 2020,
"categorySlug": "electric-guitars",
"sort": "listing_date_desc",
"maxItems": 50
}
FieldTypeRequiredDescription
querystringOne of query/make/categorySlugSearch keyword (e.g. gibson les paul)
makestringOne of query/make/categorySlugInstrument make/brand (e.g. Fender, Gibson)
conditionstringNomint, excellent, very-good, good, fair, poor
priceMinnumberNoMinimum price in USD
priceMaxnumberNoMaximum price in USD
yearMinnumberNoEarliest year of manufacture
yearMaxnumberNoLatest year of manufacture
categorySlugstringOne of query/make/categorySlugReverb category slug (e.g. electric-guitars, effects-and-pedals)
sortstringNolisting_date_desc (default), price_asc, price_desc, score
maxItemsnumberNoMax listings to return (default: 100)

Output Example

Each item in the dataset looks like this:

{
"id": 94838674,
"title": "Keeley Boss DS-1 Distortion with Ultra and Seeing Eye Mods 2010s - Orange",
"make": "Keeley",
"model": "Boss DS-1 Distortion with Ultra and Seeing Eye Mods",
"year": "2010s",
"finish": "Orange",
"condition": "Very Good",
"conditionSlug": "very-good",
"price": 141.93,
"currency": "USD",
"priceDisplay": "$141.93",
"originalPrice": null,
"shop": "Pedal Haus",
"shopId": 5231040,
"category": "Effects and Pedals / Distortion",
"description": "Modified Boss DS-1 with Triple Gain Mod...",
"publishedAt": "2026-03-05T13:57:13-05:00",
"state": "live",
"offersEnabled": true,
"hasInventory": false,
"inventory": 1,
"priceDrop": false,
"photo": "https://rvb-img.reverb.com/i/s--VQu7TrHm--/.../e6b992bd.jpeg",
"url": "https://reverb.com/item/94838674-keeley-boss-ds-1..."
}

FAQ

Q: Do I need a Reverb account or API key?
No. The actor uses Reverb's public API endpoint (api.reverb.com/api/listings) which is accessible without authentication.

Q: Does it require a proxy or browser automation?
No. Reverb's public API returns clean JSON — no Cloudflare, no JavaScript rendering, no CAPTCHA.

Q: What condition values are supported?
Reverb uses: mint, excellent, very-good, good, fair, poor. Pass one of these as the condition input.

Q: Can I scrape a specific category without a keyword?
Yes. Set categorySlug (e.g. electric-guitars, effects-and-pedals, amplifiers) and leave query empty. You can browse Reverb category slugs from the site URL structure.


Notes

  • At least one of query, make, or categorySlug is required
  • originalPrice is null when no price-drop has occurred
  • shipping field may be null if the seller hasn't specified shipping terms
  • Reverb's API returns up to 50 results per page; the actor paginates automatically