Skip to main content

SpotifyTrack

Represents a track on Spotify.

type SpotifyTrack implements Track {
audioAnalysisV6: AudioAnalysisV6!
augmentedKeywords: AugmentedKeywordsResult!
brandValues: BrandValuesResult!
similarTracks(
first: Int = 10
searchMode: SimilarTracksSearchMode
target: SimilarTracksTarget!
experimental_filter: experimental_SimilarTracksFilter
): SimilarTracksResult!
id: ID!
title: String!
}

Fields

audioAnalysisV6 (AudioAnalysisV6!)

augmentedKeywords (AugmentedKeywordsResult!)

Augmented keywords that can be associated with the audio.

brandValues (BrandValuesResult!)

Brand values that can be associated with the audio.

similarTracks (SimilarTracksResult!)

Find similar tracks.

Amount of items to fetch.

The relevant parts of the track that should be used for the similarity search.

What kind of results should be returned? Either Spotify or Library tracks.

Filters to apply on to the similarity search.

id (ID!)

The ID of the track on Spotify. It can be used for fetching additional information for the Spotify API. For further information check out the Spotify Web API Documentation. https://developer.spotify.com/documentation/web-api/

title (String!)

Interfaces

Track