Fetch the complete metadata for a single vinyl release from Discogs. Unlike the search and browse endpoints, this response includes the full tracklist, label information, country of pressing, and community popularity statistics fetched from a separate Discogs stats call. Pricing is computed on the server from the release year and the communityDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/akibanks/api-tienda-vinilos/llms.txt
Use this file to discover all available pages before exploring further.
have/want ratio.
The response is cached in Redis under disco:{id} for 7 days. This long TTL is intentional — Discogs release metadata rarely changes after initial entry. The cached record is also reused internally by the /historia, /video, and /recomendaciones sub-endpoints to avoid redundant upstream fetches.
Endpoint
| Property | Value |
|---|---|
| Method | GET |
| Path | /disco/:id |
| Auth | None |
| Cache TTL | 7 days |
Request Parameters
The Discogs release ID. This is the numeric ID found in Discogs release URLs
(e.g., for
https://www.discogs.com/release/9579406, the ID is 9579406).Response Fields
The Discogs release ID, cast to a string.
The release title as listed on Discogs.
Comma-separated list of artists. Discogs disambiguation suffixes like
(2) or
(3) are stripped from each name before joining. null if no artists are listed.Release year as a four-digit integer, or
null if not listed on Discogs.Primary genre from the release’s genre list, or
null.Primary style from the release’s style list, or
null.URL of the primary cover image (
images[0].uri) from Discogs, or null.Ordered list of tracks on the release.
Computed retail price in USD, derived from the release year and community
want/have ratio. Rounded to two decimal places.Number of Discogs community members who have this release in their collection,
fetched from the Discogs
/releases/{id}/stats endpoint.Number of Discogs community members who want this release.
Name of the primary record label (
labels[0].name), or null.Country of pressing as listed on Discogs (e.g.,
"US", "UK"), or null.Example Request
Example Response
Error Responses
| Status | Error message | Cause |
|---|---|---|
404 | "Disco no encontrado en Discogs." | The Discogs API returned a non-OK response for this ID. |
500 | "Error al obtener el disco." | Network failure, Discogs API error, or unexpected exception. |