Skip to main content

Documentation 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.

Browse the Discogs catalog filtered to a specific genre. Results are sorted by have (community collection count) in descending order, so the most widely-owned releases in that genre appear first — a reliable proxy for cultural significance and demand. Each page of 20 results is cached in Redis under the key genero:{genre}:{page} for 24 hours.
Genre names are case-sensitive on the Discogs API. Use the canonical Discogs genre names: Rock, Jazz, Electronic, Hip Hop, Folk, World, & Country, Classical, Blues, Reggae, Latin, Pop, Funk / Soul, Non-Music, Stage & Screen, Children's.

Endpoint

PropertyValue
MethodGET
Path/genero/:genero
AuthNone
Cache TTL24 hours per (genre, page)

Request Parameters

genero
string
required
The Discogs genre name to filter by. URL-encoded automatically — spaces should be encoded as %20 or + in the URL. Examples: Rock, Jazz, Electronic, Hip%20Hop.
pagina
integer
default:1
Page number to retrieve. Each page contains up to 20 results. Starts at 1.

Response Fields

resultados
array
required
Array of release objects for the requested genre and page.
total
integer
required
Total number of releases in this genre across all pages.
paginas
integer
required
Total number of pages available for this genre.
pagina
integer
required
The current page number that was returned (mirrors the pagina query parameter).

Example Request

curl "https://api.vinylvibes.example.com/genero/Jazz?pagina=1"

Example Response

{
  "resultados": [
    {
      "discogs_id": "3086827",
      "titulo": "Kind Of Blue",
      "artista": "Miles Davis",
      "anio": 1959,
      "genero": "Jazz",
      "estilo": "Cool Jazz",
      "imagen_url": "https://i.discogs.com/kind-of-blue-cover.jpg",
      "precio": 39.99,
      "have": 98100,
      "want": 42300
    },
    {
      "discogs_id": "1217226",
      "titulo": "A Love Supreme",
      "artista": "John Coltrane",
      "anio": 1965,
      "genero": "Jazz",
      "estilo": "Hard Bop",
      "imagen_url": "https://i.discogs.com/a-love-supreme-cover.jpg",
      "precio": 39.99,
      "have": 72800,
      "want": 35600
    }
  ],
  "total": 198430,
  "paginas": 9922,
  "pagina": 1
}

Error Responses

StatusError messageCause
500"Error al obtener discos por género."Discogs API request failed or returned an error.

Build docs developers (and LLMs) love