# Discogs Vinyl and CD Price Extractor

**Use case:** 

Fetch detailed Discogs marketplace listings, including pricing and seller info. Get crucial data on vinyl records, CDs, and cassettes.

## Input

```json
{
  "url": "https://www.discogs.com/sell/list",
  "keyword": "nirvana",
  "results_wanted": 200,
  "max_pages": 10,
  "fetch_release_details": false,
  "fetch_marketplace_stats": false,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "query_mode": {
    "label": "Mode",
    "format": "text"
  },
  "release_id": {
    "label": "Release ID",
    "format": "number"
  },
  "master_id": {
    "label": "Master ID",
    "format": "number"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "artists": {
    "label": "Artists",
    "format": "array"
  },
  "year": {
    "label": "Year",
    "format": "number"
  },
  "country": {
    "label": "Country",
    "format": "text"
  },
  "num_for_sale": {
    "label": "Listings",
    "format": "number"
  },
  "lowest_price_value": {
    "label": "Lowest Price",
    "format": "number"
  },
  "lowest_price_currency": {
    "label": "Currency",
    "format": "text"
  },
  "community_have": {
    "label": "Have",
    "format": "number"
  },
  "community_want": {
    "label": "Want",
    "format": "number"
  },
  "discogs_url": {
    "label": "URL",
    "format": "link"
  },
  "fetched_at": {
    "label": "Fetched",
    "format": "date"
  }
}
```

## About this Actor

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