# Discogs Vinyl Record Price Guide

**Use case:** 

Compare current marketplace price signals for two known vinyl releases on Discogs.

## Input

```json
{
  "target": "releaseDetails",
  "releaseSearchValues": [
    "Miles Davis"
  ],
  "releaseSearchOptions": {
    "yearFrom": 1959,
    "yearTo": 1959,
    "country": "US",
    "genre": "Jazz",
    "format": "Vinyl",
    "maxResults": 3
  },
  "releaseValues": [
    "249504",
    "1967593"
  ],
  "artistMaxResults": 100,
  "labelMaxResults": 100,
  "masterMaxResults": 100
}
```

## Output

```json
{
  "rowType": {
    "label": "Type",
    "format": "text"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "name": {
    "label": "Name",
    "format": "text"
  },
  "artists": {
    "label": "Artists",
    "format": "array"
  },
  "year": {
    "label": "Year",
    "format": "number"
  },
  "country": {
    "label": "Country",
    "format": "text"
  },
  "url": {
    "label": "Discogs link",
    "format": "link"
  },
  "coverImageUrl": {
    "label": "Cover image",
    "format": "image"
  },
  "thumbnailUrl": {
    "label": "Thumbnail",
    "format": "image"
  }
}
```

## About this Actor

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