# MusicBrainz Artist Data Scraper

**Use case:** 

Search MusicBrainz artists and export names, IDs, countries and metadata. Build music databases fast with clean structured artist records.

## Input

```json
{
  "maxItems": 100,
  "mode": "artists",
  "query": "john"
}
```

## Output

```json
{
  "id": {
    "label": "Id",
    "format": "text"
  },
  "name": {
    "label": "Name",
    "format": "text"
  },
  "sortName": {
    "label": "Sort Name",
    "format": "text"
  },
  "type": {
    "label": "Type",
    "format": "text"
  },
  "country": {
    "label": "Country",
    "format": "text"
  },
  "areaName": {
    "label": "Area Name",
    "format": "text"
  },
  "beginAreaName": {
    "label": "Begin Area Name",
    "format": "text"
  },
  "beginDate": {
    "label": "Begin Date",
    "format": "text"
  },
  "endDate": {
    "label": "End Date",
    "format": "text"
  },
  "ended": {
    "label": "Ended",
    "format": "text"
  },
  "disambiguation": {
    "label": "Disambiguation",
    "format": "text"
  },
  "score": {
    "label": "Score",
    "format": "number"
  },
  "url": {
    "label": "Url",
    "format": "link"
  },
  "scrapedAt": {
    "label": "Scraped At",
    "format": "text"
  }
}
```

## About this Actor

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