# Spotify Track Recommendations Generator

**Use case:** 

Generate song recommendations based on specific Spotify tracks. Get 20 curated songs tailored to your seed input in seconds.

## Input

```json
{
  "seedTracks": [
    "https://open.spotify.com/track/0DiWol3AO6WpXZgp0goxAV"
  ],
  "limit": 20,
  "includeAudioFeatures": false,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "image": {
    "label": "Image",
    "format": "string"
  },
  "name": {
    "label": "Name",
    "format": "string"
  },
  "url": {
    "label": "URL",
    "format": "string"
  },
  "result": {
    "label": "Result",
    "format": "string"
  },
  "type": {
    "label": "Type",
    "format": "string"
  },
  "mode": {
    "label": "Mode",
    "format": "string"
  },
  "target": {
    "label": "Seeds",
    "format": "string"
  },
  "error": {
    "label": "Error",
    "format": "string"
  },
  "success": {
    "label": "Success",
    "format": "boolean"
  }
}
```

## About this Actor

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