# MusicBrainz Artist Search Monitor

**Use case:** 

Search MusicBrainz artists and extract names, countries, disambiguation, genres, tags, scores, and MusicBrainz identifiers.

## Input

```json
{
  "searchQueries": [
    "Radiohead",
    "Miles Davis"
  ],
  "entityType": "artist",
  "maxResults": 10
}
```

## Output

```json
{
  "name": {
    "label": "Name",
    "format": "text"
  },
  "type": {
    "label": "Type",
    "format": "text"
  },
  "country": {
    "label": "Country",
    "format": "text"
  },
  "area": {
    "label": "Area",
    "format": "text"
  },
  "tags": {
    "label": "Tags",
    "format": "text"
  },
  "score": {
    "label": "Score",
    "format": "number"
  },
  "beginDate": {
    "label": "Begin Date",
    "format": "text"
  },
  "musicBrainzUrl": {
    "label": "MusicBrainz URL",
    "format": "link"
  }
}
```

## About this Actor

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