# Discogs label catalog price monitor

**Use case:** 

Monitor Discogs label releases with current lowest price, number for sale, collector have/want demand, ratings, formats, and catalog data.

## Input

```json
{
  "query": "Radiohead OK Computer",
  "releaseIds": [],
  "artistIds": [],
  "labelIds": [
    "https://www.discogs.com/label/895"
  ],
  "maxItems": 50,
  "includeMarketplaceStats": true
}
```

## Output

```json
{
  "releaseId": {
    "label": "Release ID",
    "format": "number"
  },
  "releaseUrl": {
    "label": "Release",
    "format": "link"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "artistsText": {
    "label": "Artists",
    "format": "text"
  },
  "year": {
    "label": "Year",
    "format": "number"
  },
  "country": {
    "label": "Country",
    "format": "text"
  },
  "formats": {
    "label": "Formats",
    "format": "array"
  },
  "labels": {
    "label": "Labels",
    "format": "array"
  },
  "haveCount": {
    "label": "Have",
    "format": "number"
  },
  "wantCount": {
    "label": "Want",
    "format": "number"
  },
  "numForSale": {
    "label": "For sale",
    "format": "number"
  },
  "lowestPrice": {
    "label": "Lowest price",
    "format": "number"
  },
  "lowestPriceCurrency": {
    "label": "Currency",
    "format": "text"
  },
  "ratingAverage": {
    "label": "Rating",
    "format": "number"
  },
  "ratingCount": {
    "label": "Ratings",
    "format": "number"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "date"
  }
}
```

## About this Actor

This example demonstrates how to use [Discogs Marketplace Price & Demand Scraper](https://apify.com/automation-lab/discogs-marketplace-price-demand-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/discogs-marketplace-price-demand-scraper) to learn more, explore other use cases, and run it yourself.