# Dub Releases on Discogs - Prices & Rarity

**Use case:** 

Dub releases from the Discogs database, each with artist, label, catalogue number, pressing country, format, how many collectors own and want it, its rating

## Input

```json
{
  "query": "Aphex Twin",
  "genre": "Reggae",
  "style": "Dub",
  "label": "Warp Records",
  "country": "Germany",
  "format": "Vinyl",
  "year": "1994",
  "artistIds": [
    "72872",
    "125246"
  ],
  "labelIds": [
    "23528"
  ],
  "minCommunityHave": 500,
  "minForSale": 5,
  "includeMarketData": true,
  "maxReleases": 200,
  "requestsPerMinute": 22
}
```

## Output

```json
{
  "handle": {
    "label": "Artist",
    "format": "string"
  },
  "releaseTitle": {
    "label": "Release title",
    "format": "string"
  },
  "year": {
    "label": "Year",
    "format": "integer"
  },
  "labels": {
    "label": "Labels",
    "format": "array"
  },
  "catalogNumbers": {
    "label": "Catalogue numbers",
    "format": "array"
  },
  "formats": {
    "label": "Formats",
    "format": "array"
  },
  "country": {
    "label": "Country",
    "format": "string"
  },
  "releaseUrl": {
    "label": "Release page",
    "format": "string"
  }
}
```

## About this Actor

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