# Search AllMusic songs and tracks

**Use case:** 

Scrape song search results from AllMusic. Export track titles, performers, albums, styles, and AllMusic URLs.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.allmusic.com/search/songs/love"
    }
  ],
  "maxItems": 10,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "US"
  }
}
```

## Output

```json
{
  "url": {
    "label": "Artist / Album / Song Url",
    "format": "text"
  },
  "name": {
    "label": "Artist / Album / Song Name",
    "format": "text"
  },
  "type": {
    "label": "Artist / Album / Song type",
    "format": "text"
  },
  "genre": {
    "label": "Artist / Album / Song genre",
    "format": "text"
  }
}
```

## About this Actor

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