$API_TOKEN=<YOUR_API_TOKEN>
$cat > input.json << 'EOF'
<{
< "tracks": [
< "https://open.spotify.com/track/0DiWol3AO6WpXZgp0goxAV",
< "49X0LAl6faAusYq02PRAY6",
< "Music Sounds Better With You"
< ],
< "tracksIncludeArtists": true,
< "tracksIncludeAlbum": true,
< "tracksIncludeAudioFeatures": true,
< "tracksIncludeAvailableMarkets": false,
< "artists": [
< "https://open.spotify.com/artist/0L8ExT028jH3ddEcZwqJJ5",
< "4Z8W4fKeB5YxbusRsdQVPb",
< "System Of A Down"
< ],
< "artistsIncludeTopTracks": false,
< "artistsIncludeAlbums": false,
< "artistsIncludeAvailableMarkets": false,
< "albums": [
< "https://open.spotify.com/album/2ANVost0y2y52ema1E9xAZ",
< "25WE9xmZIYadg5lhdgscTJ",
< "The Dark Side Of The Moon"
< ],
< "albumsIncludeTracks": true,
< "albumsIncludeArtists": true,
< "albumsIncludeAvailableMarkets": false,
< "searchKeywordLimit": 3,
< "proxyConfiguration": {
< "useApifyProxy": true
< }
<}
<EOF
$curl "https://api.apify.com/v2/acts/musicae~spotify-extended-scraper/runs?token=$API_TOKEN" \
< -X POST \
< -d @input.json \
< -H 'Content-Type: application/json'