Discover/Discogs API
live

Discogs APIdiscogs.com

Fetch paginated Discogs Marketplace vinyl listings with filters for format, style, and shipping origin. Get full listing details including price, condition, and seller info.

Endpoint health
verified 2d ago
get_listing_detail
fetch_vinyl_listings
2/2 passing latest checkself-healing
Endpoints
2
Updated
26d ago

What is the Discogs API?

This API provides two endpoints for querying the Discogs Marketplace: fetch_vinyl_listings returns paginated listing summaries with over a dozen fields per item including pricing, condition grades, and seller data, while get_listing_detail returns a full record for a single listing including release metadata, community stats, and shipping policy. Together they cover searching, filtering, and deep-diving into individual marketplace records.

Try it
Full Discogs Marketplace URL for a specific results page. Supports query parameters such as style, format, format_desc, ships_from, page, limit (25|50|100|250), and sort. If omitted, fetches the first page of results for Score-style vinyl listings shipping from the Netherlands.
api.parse.bot/scraper/55cf9bdd-42b4-44ac-a5a5-64cc5bda5596/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/55cf9bdd-42b4-44ac-a5a5-64cc5bda5596/fetch_vinyl_listings?page_url=https%3A%2F%2Fwww.discogs.com%2Fsell%2Flist%3Fstyle%3DScore%26format%3DVinyl%26ships_from%3DNetherlands' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace discogs-com-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Discogs Marketplace: browse vinyl listings and drill into detail."""
from parse_apis.discogs_marketplace_api import Discogs, ListingNotFound

client = Discogs()

# Browse Score/Soundtrack vinyl listings from Netherlands (default filter)
for listing in client.listingsummaries.list(limit=3):
    print(listing.title, listing.price, listing.ships_from)

# Drill into the first listing's full detail
summary = client.listingsummaries.list(limit=1).first()
if summary:
    detail = summary.details()
    print(detail.condition, detail.seller.username, detail.release.title)
    print(detail.original_price.formatted, detail.price.currency)

# Direct fetch by listing_id with typed error handling
try:
    full = client.listings.get(listing_id="9999999999")
except ListingNotFound as exc:
    print(f"Listing not found: {exc.listing_id}")

print("exercised: listingsummaries.list / summary.details / listings.get / ListingNotFound")
All endpoints · 2 totalmissing one? ·

Fetch a paginated list of Discogs Marketplace listings. Supports filtering by format, style/genre, shipping origin, sort order, and page size via a full Discogs Marketplace URL. Returns matching items with pricing, condition, seller info, and community data, plus a next-page URL for pagination. If no page_url is provided, returns the first page of Score-style vinyl listings shipping from the Netherlands.

Input
ParamTypeDescription
page_urlstringFull Discogs Marketplace URL for a specific results page. Supports query parameters such as style, format, format_desc, ships_from, page, limit (25|50|100|250), and sort. If omitted, fetches the first page of results for Score-style vinyl listings shipping from the Netherlands.
Response
{
  "type": "object",
  "fields": {
    "items": "array of listing summary objects with release_id, title, listing_id, listing_url, label, catalog_number, media_condition, sleeve_condition, price, price_currency, price_value, converted_price, seller, seller_rating, seller_num_ratings, ships_from, community_have, community_want, community_rating, thumbnail, release_url, seller_comments",
    "page_range": "string or null - e.g. '1 – 25 of 8,541'",
    "items_count": "integer - number of items on this page",
    "request_url": "string - the URL that was fetched",
    "total_items": "integer or null - total matching items across all pages",
    "next_page_url": "string or null - URL for the next page of results",
    "prev_page_url": "string or null - URL for the previous page of results"
  }
}

About the Discogs API

Browsing and Filtering Marketplace Listings

fetch_vinyl_listings accepts a full Discogs Marketplace URL via the page_url parameter, which means any filter combination the Marketplace supports — format, style, ships_from, sort order, and page size — can be passed directly. The response includes an items array where each object carries release_id, listing_id, listing_url, title, label, catalog_number, media_condition, sleeve_condition, and pricing fields. Pagination is handled through next_page_url and prev_page_url, and the page_range string (e.g. 1 – 25 of 8,541) lets you calculate total pages without extra requests. total_items gives the integer count directly when the Marketplace exposes it.

Listing Detail Endpoint

get_listing_detail takes a numeric listing_id — obtained from the listing_id field in fetch_vinyl_listings results — and returns a complete record. The price object contains a numeric value in USD and the original currency. The seller object includes username, rating, total_ratings, min_order_total, accepted payment methods, and the seller's full shipping_policy text. The release sub-object adds artist, format, year, label, catalog_number, a thumbnail URL, and community have/want counts that reflect collector demand.

Conditions, Comments, and Provenance

Both endpoints surface condition data: fetch_vinyl_listings gives media_condition and sleeve_condition in each summary object, while get_listing_detail returns a condition field plus a free-text comments string where sellers describe pressings, defects, or history. The ships_from field on the detail endpoint identifies the dispatch country, complementing the ships_from filter available on the listing search. The posted field is an ISO datetime indicating when the listing went live.

Reliability & maintenanceVerified

The Discogs API is a managed, monitored endpoint for discogs.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when discogs.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official discogs.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
2d ago
Latest check
2/2 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Track price trends for a specific pressing by collecting price.value across paginated results filtered by release_id.
  • Build a deal-finder that filters listings by ships_from to surface items shipping from a target region at low cost.
  • Monitor community demand by comparing community_want vs community_have from get_listing_detail release objects.
  • Aggregate seller reputation data using seller.rating and seller.total_ratings across multiple listings.
  • Alert on new listings for a given style or label by polling fetch_vinyl_listings and comparing listing_id sets.
  • Compile a catalog of available pressings for a specific label using label and catalog_number fields from listing summaries.
  • Audit seller shipping policies by extracting seller.shipping_policy and seller.min_order_total from detail responses.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Discogs have an official developer API?+
Yes. Discogs provides an official REST API documented at https://www.discogs.com/developers. It covers database lookups, collection management, and some Marketplace endpoints, but requires OAuth authentication and has its own rate limits.
What does `fetch_vinyl_listings` return beyond the item list?+
In addition to the items array, the response includes page_range (a human-readable range string like '1 – 25 of 8,541'), total_items as an integer, items_count for the current page, request_url, and both next_page_url and prev_page_url for cursor-style pagination.
Does the API return seller shipping costs or just shipping policy text?+
The get_listing_detail endpoint returns seller.shipping_policy as a free-text string and seller.min_order_total, but does not return a computed shipping cost to a specific destination. Calculated shipping rates are not currently exposed. You can fork the API on Parse and revise it to add an endpoint targeting destination-specific shipping cost data if the source exposes it for a given listing.
Can I filter listings by specific release ID or artist name through `fetch_vinyl_listings`?+
The page_url parameter accepts any valid Discogs Marketplace URL, so filters supported by the Marketplace search (format, style, ships_from, sort) can be included. Direct filtering by release_id or artist name in the endpoint parameter is not currently an option beyond what the Marketplace URL query string allows. You can fork the API on Parse and revise it to add a dedicated release-level search endpoint.
Is sleeve condition always present in listing summaries?+
Sleeve condition appears as a field in the items array from fetch_vinyl_listings, but sellers occasionally list records without a sleeve or omit that grade, so the value may be null or absent for some records. Media condition is more consistently populated.
Page content last updated . Spec covers 2 endpoints from discogs.com.
Related APIs in MarketplaceSee all →
amoeba.com API
Search and browse Amoeba Music's catalog of vinyl records and CDs, including used listings, to find product details and discover new releases. Check store information to plan your visits to Amoeba's physical locations.
vinted.co.uk API
Search and browse Vinted UK listings to compare prices, view detailed product information, and track pricing trends across categories. Get instant access to live marketplace data including search results, item details, and price intelligence for competitive shopping analysis.
vinylengine.com API
Search and explore detailed specifications for over 10,000 vinyl turntables, tonearms, and cartridges from hundreds of manufacturers, complete with ratings and images. Find the perfect components for your setup by browsing comprehensive product information and manufacturer catalogs all in one place.
juno.co.uk API
Search and browse Juno Records' catalog to find music across genres, discover new releases and bestsellers, and get detailed product information with autocomplete suggestions. Perfect for exploring vinyl, CDs, and digital music with real-time access to charts and recommendations.
reverb.com API
Search and browse thousands of music gear listings on Reverb.com by keyword, price, condition, category, brand, and year to find the perfect instrument or equipment. Filter results to compare vintage guitars, synthesizers, drums, and more across different price ranges and conditions.
vinted.de API
Search and browse secondhand items on Vinted.de with customizable filters to find exactly what you're looking for. Get detailed product information including descriptions, categories, colors, and pricing to make informed purchasing decisions.
shpock.com API
Search and browse products listed on Shpock.com, view detailed listing information and seller profiles, and explore all available marketplace categories. Find what you're looking for by searching inventory, checking seller histories, and discovering related items from individual merchants.
vinted.fr API
Search and browse secondhand product listings on Vinted.fr with flexible filtering by price, category, and condition to find the items you're looking for. Sort results by relevance, price, or newest listings and navigate through pages to discover available products on the marketplace.