# Spotify Track Audio Features Analysis

**Use case:** 

Retrieve key audio features for specific Spotify tracks. Get tempo, key, energy, and more in JSON format within seconds.

## Input

```json
{
  "tracks": [
    "https://open.spotify.com/track/0DiWol3AO6WpXZgp0goxAV",
    "49X0LAl6faAusYq02PRAY6",
    "Music Sounds Better With You"
  ],
  "includeEmbedding": false,
  "searchKeywordLimit": 3,
  "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": "Target",
    "format": "string"
  },
  "error": {
    "label": "Error",
    "format": "string"
  },
  "success": {
    "label": "Success",
    "format": "boolean"
  }
}
```

## About this Actor

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