getRecommendations

suspend fun Ktify.getRecommendations(seedArtists: List<Artist> = listOf(), seedGenres: List<String> = listOf(), seedTracks: List<Track> = listOf(), limit: Int? = null, market: String? = null, minAcousticness: Double? = null, maxAcousticness: Double? = null, targetAcousticness: Double? = null, minDanceability: Double? = null, maxDancability: Double? = null, targetDancability: Double? = null, minDurationMs: Int? = null, maxDurationMs: Int? = null, targetDurationMs: Int? = null, minEnergy: Double? = null, maxEnergy: Double? = null, targetEnergy: Double? = null, minInstrumentalness: Double? = null, maxInstrumentalness: Double? = null, targetInstrumentalness: Double? = null, minKey: Int? = null, maxKey: Int? = null, targetKey: Int? = null, minLiveness: Double? = null, maxLiveness: Double? = null, targetLiveness: Double? = null, minLoudness: Double? = null, maxLoudness: Double? = null, targetLoudness: Double? = null, minMode: Int? = null, maxMode: Int? = null, targetMode: Int? = null, minPopularity: Int? = null, maxPopularity: Int? = null, targetPopularity: Int? = null, minSpeechiness: Double? = null, maxSpeechiness: Double? = null, targetSpeechiness: Double? = null, minTempo: Double? = null, maxTempo: Double? = null, targetTempo: Double? = null, minTimeSignature: Int? = null, maxTimeSignature: Int? = null, targetTimeSignature: Int? = null, minValence: Double? = null, maxValence: Double? = null, targetValence: Double? = null): Recommendations(source)

Get recommendations A minimum of one seed in either artists, genres or tracks has to be provided, a maximum of 5 in combination of all are allowed For parameter documentation. refer to Spotify Documentation

Return

Recommendations object