Songs

Description: Shows information about music tracks and related content.

API Response Structure:

{
  "song": {
    "title": "Song Title",
    "artist": {
      "name": "Artist Name",
      "type": "Solo/Band",
      "image": "https://example.com/artist.jpg"
    },
    "album": {
      "name": "Album Name",
      "releaseDate": "2023",
      "cover": "https://example.com/album.jpg",
      "type": "Studio/Live/EP"
    },
    "details": {
      "duration": "3:45",
      "genre": ["Pop", "Rock"],
      "language": "English",
      "writers": ["Writer 1", "Writer 2"],
      "producers": ["Producer 1"]
    }
  },
  "playback": {
    "preview": "https://example.com/preview.mp3",
    "platforms": [
      {
        "name": "Spotify",
        "url": "https://spotify.com/track",
        "streams": "1M+"
      }
    ],
    "lyrics": {
      "available": true,
      "language": "English",
      "verified": true
    }
  },
  "metrics": {
    "popularity": {
      "rank": "#5",
      "peak": "#1",
      "weeks": 10
    },
    "ratings": {
      "score": 4.5,
      "votes": "10K+"
    }
  },
  "related": {
    "similarSongs": ["Song 1", "Song 2"],
    "playlists": ["Playlist 1", "Playlist 2"]
  },
  "type": "songs"
}

Fields:

  • song (object): Track information

    • title (string): Song name

    • artist (object): Artist details

    • album (object): Album info

    • details (object): Song specifics

  • playback (object): Listening options

  • metrics (object): Performance stats

  • related (object): Similar content

  • type (string): Always "songs"