# Discogs Label Search

**Use case:** 

Find up to three Discogs label profiles that match Columbia.

## Input

```json
{
  "target": "labelSearch",
  "releaseSearchValues": [
    "Miles Davis"
  ],
  "releaseSearchOptions": {
    "yearFrom": 1959,
    "yearTo": 1959,
    "country": "US",
    "genre": "Jazz",
    "format": "Vinyl",
    "maxResults": 3
  },
  "artistMaxResults": 100,
  "labelSearchValues": [
    "Columbia"
  ],
  "labelMaxResults": 3,
  "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.