OBJECT

Track

link GraphQL Schema definition

  • type Track implements Displayable {
  • album: Album
  • artists: [Artist]
  • # The markets where the track is licensed for playback
  • availableMarkets: [IsoCountry]
  • display: Display
  • # The track's duration in milliseconds
  • duration: Int @deprecated( reason: "Use duration_ms instead" )
  • # The track's duration in milliseconds
  • durationMs: Int
  • explicit: Boolean
  • id: ID!
  • # If the track is licensed for playback in a particular market.
  • #
  • # Arguments
  • # market: [Not documented]
  • isAvailable(market: IsoCountry!): Boolean
  • # A globally unique ID to identify this recording
  • isrc: String!
  • name: String @deprecated( reason: "Use title instead." )
  • # A 30 second preview of the track. Not available for all tracks
  • previewUrl: String
  • # The recognizability of this track (0-100)
  • recognizability: Int
  • # A URL that can be used to share the track with users. Does not necessarily
  • # always point to the same provider (e.g. Spotify)
  • shareUrl: String @deprecated( reason: "Will be removed in a future version." )
  • # The track's version identifier
  • snapshot: String
  • title: String
  • # The version of the recording, e.g. radio edit.
  • version: String
  • }