# Discogs Vinyl Record Price Scraper

**Use case:** 

Scrape vinyl records from Discogs with marketplace prices — title, artist, label, year, format and lowest price. No token needed. Export to Excel, CSV or JSON.

## Input

```json
{
  "queries": [
    "Pink Floyd",
    "Miles Davis"
  ],
  "type": "release",
  "artists": [],
  "labels": [],
  "maxPerEntity": 100,
  "genre": "",
  "style": "",
  "year": "",
  "format": "Vinyl",
  "country": "",
  "includePrice": true,
  "maxItemsPerQuery": 200,
  "maxItems": 0,
  "maxConcurrency": 4,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "title": {
    "label": "Title",
    "format": "text"
  },
  "year": {
    "label": "Year",
    "format": "text"
  },
  "format": {
    "label": "Format",
    "format": "text"
  },
  "genre": {
    "label": "Genre",
    "format": "text"
  },
  "country": {
    "label": "Country",
    "format": "text"
  },
  "label": {
    "label": "Label",
    "format": "text"
  },
  "have": {
    "label": "Have",
    "format": "number"
  },
  "want": {
    "label": "Want",
    "format": "number"
  },
  "demandRatio": {
    "label": "Want/Have",
    "format": "number"
  },
  "lowestPrice": {
    "label": "Lowest €/$",
    "format": "number"
  },
  "numForSale": {
    "label": "For Sale",
    "format": "number"
  },
  "url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [Discogs Vinyl & Music Scraper](https://apify.com/sashaebashu/discogs-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/sashaebashu/discogs-scraper) to learn more, explore other use cases, and run it yourself.