# Export Spotify artist shop products

**Use case:** 

Scrape merchandise listings from a Spotify artist shop URL. Export product names, prices, availability, and images for music merch market research.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://shop.spotify.com/cs/artist/4ea8AWmXxlW0nX2ogATXiN/store"
    }
  ],
  "maxItems": 10,
  "hideSoldOut": true,
  "sortBy": "date_desc",
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "artistName": {
    "label": "Artist name"
  },
  "title": {
    "label": "Title"
  },
  "price": {
    "label": "Price"
  },
  "currency": {
    "label": "Currency"
  },
  "availableForSale": {
    "label": "Available for sale"
  },
  "url": {
    "label": "Url"
  },
  "imageUrl": {
    "label": "Image url"
  }
}
```

## About this Actor

This example demonstrates how to use [Spotify Artist Shop Scraper](https://apify.com/rainminer/spotify-artist-shop-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/rainminer/spotify-artist-shop-scraper) to learn more, explore other use cases, and run it yourself.