Skip to content
This repository has been archived by the owner on Jul 8, 2022. It is now read-only.

Track.GetSupplement(string trackId)

KirMozor edited this page May 14, 2022 · 1 revision

Getting additional information about the track (Lyrics, video, etc.).

Example:

using System;
using YandexMusicApi;

namespace Program
{
    public class Player
    {
        static void Main(string[] args)
        {
            Console.WriteLine(Track.GetSupplement("34976783")); //TrackId: Imagine Dragons Thunder
        }
    }
}

Output:

{
  "invocationInfo": {
    "req-id": "5p60q3597y9240u56896-7i7iu7h04i7h0i4uj809",
    "hostname": "music-stable-back-vla-46.vla.yp-c.yandex.net",
    "exec-duration-millis": 3
  },
  "result": {
    "id": "34976783",
    "lyrics": {
      "id": 34976783,
      "lyrics": "Just a young gun with a quick fuse\nI was uptight, wanna let loose\nI was dreaming of bigger things\nAnd wanna leave my own life behind",
      "fullLyrics": "Just a young gun with a quick fuse\nI was uptight, wanna let loose\nI was dreaming of bigger things\nAnd wanna leave my own life behind\nNot a yes sir, not a follower\nFit the box, fit the mold\nHave a seat in the foyer, take a number\nI was lightning before the thunder\n\nThunder, thunder\nThunder, thun-, thunder\nThun-thun-thunder, thunder, thunder\nThunder, thun-, thunder\nThun-thun-thunder, thunder\n\nThunder, feel the thunder\nLightning and the thunder\nThunder, feel the thunder\nLightning and the thunder\nThunder, thunder, thunder\n\nKids were laughing in my classes\nWhile I was scheming for the masses\nWho do you think you are?\nDreaming 'bout being a big star\nYou say you're basic, you say you're easy\nYou're always riding in the back seat\nNow I'm smiling from the stage while\nYou were clapping in the nose bleeds\n\nThunder, thunder\nThunder, thun-, thunder\nThun-thun-thunder, thunder, thunder\nThunder, thun-, thunder\nThun-thun-thunder, thunder\n\nThunder, feel the thunder\nLightning and the thunder\nThunder, feel the thunder\nLightning and the thunder\nThunder\n\nThunder, feel the thunder\nLightning and the thunder, thunder\nThunder, feel the thunder\nLightning and the thunder, thunder\nThunder, feel the thunder\nLightning and the thunder, thunder\nThunder, feel the thunder\nLightning and the thunder, thunder\nThunder, feel the thunder\nLightning and the thunder, thunder\n\nThunder, thunder, thunder\nThun-thun-thunder, thunder\nThunder, thunder, thunder\nThun-thun-thunder, thunder\nThunder, thunder, thunder\nThun-thun-thunder, thunder\nThunder, thunder, thunder\nThun-thun-thunder, thunder",
      "hasRights": true,
      "textLanguage": "en",
      "showTranslation": true
    }
  }
}

Clone this wiki locally