# Jazz Records With 10+ Copies For Sale

**Use case:** 

Jazz releases with at least ten copies listed in the Discogs marketplace right now — the liquid end of the catalogue, with the lowest current price per row.

## Input

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

## Output

```json
{
  "handle": {
    "label": "Artist",
    "format": "string"
  },
  "releaseTitle": {
    "label": "Release title",
    "format": "string"
  },
  "year": {
    "label": "Year",
    "format": "integer"
  },
  "numForSale": {
    "label": "Copies for sale",
    "format": "integer"
  },
  "lowestPriceUsd": {
    "label": "Lowest price (USD)",
    "format": "number"
  },
  "communityHave": {
    "label": "Collectors who own it",
    "format": "integer"
  },
  "communityWant": {
    "label": "Collectors who want it",
    "format": "integer"
  },
  "ratingAverage": {
    "label": "Rating",
    "format": "number"
  },
  "ratingCount": {
    "label": "Ratings",
    "format": "integer"
  },
  "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.