# Discogs Artist Discography Scraper

**Use case:** 

Export the full discography of any artist or label from Discogs — every release with title, year, format and catalog number. No token. Export to Excel or CSV.

## Input

```json
{
  "queries": [
    "Pink Floyd"
  ],
  "type": "release",
  "artists": [
    "Radiohead",
    "Aphex Twin"
  ],
  "labels": [],
  "maxPerEntity": 100,
  "genre": "",
  "style": "",
  "year": "",
  "format": "",
  "country": "",
  "includePrice": false,
  "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.