# Hip Hop Records on Discogs — Prices & Stock

**Use case:** 

Hip hop releases with live marketplace figures: copies for sale, lowest price, collector counts and rating, plus label and catalogue number.

## Input

```json
{
  "query": "Aphex Twin",
  "genre": "Hip Hop",
  "style": "Techno",
  "label": "Warp Records",
  "country": "Germany",
  "format": "Vinyl",
  "year": "1994",
  "artistIds": [
    "72872",
    "125246"
  ],
  "labelIds": [
    "23528"
  ],
  "minCommunityHave": 500,
  "minForSale": 1,
  "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.