• Stars
    star
    189
  • Rank 200,312 (Top 5 %)
  • Language
    JavaScript
  • License
    MIT License
  • Created over 9 years ago
  • Updated over 5 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

A Node.js wrapper for the Yandex.Music API (Unofficial) http://music.yandex.ru

Yandex.Music API (Unofficial) for Node

This is a Node.js wrapper for the Yandex.Music API that is used in mobile apps (iOS/Android).

Installation

npm install yandex-music-api

Usage

var YandexMusicApi = require('yandex-music-api');

var api = new YandexMusicApi();

api.init({username: '[email protected]', password: 'password'}).then(function() {
	// place code here
})

This library provides following functions:

Users

  • getAccountStatus
  • getFeed

Music

  • getGenres
  • search

Playlist

  • getUserPlaylists
  • getPlaylist
  • getPlaylists
  • createPlaylist
  • removePlaylist
  • renamePlaylist
  • addTracksToPlaylist
  • removeTracksFromPlaylist