Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@maserokun/yandex-music-api

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@maserokun/yandex-music-api

Forked version of https://github.com/kontsevoye/ym-api with some changes

  • 1.0.8
  • latest
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

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 @maserokun/yandex-music-api

Usage

import { YMApi } from "@maserokun/yandex-music-apii";
const api = new YMApi();

(async () => {
  try {
    await api.init({ username: "example@yandex.ru", password: "password" });
    const result = await api.searchArtists("gorillaz");
    console.log({ result });
  } catch (e) {
    console.log(`api error ${e.message}`);
  }
})();

Available methods

This library provides following methods:

Plain API

Users
  • getAccountStatus
  • getFeed
Music
  • getGenres
  • search
  • searchArtists
  • searchTracks
  • searchAlbums
  • searchAll
Playlist
  • getPlaylist
  • getPlaylists
  • getUserPlaylists
  • createPlaylist
  • removePlaylist
  • renamePlaylist
  • addTracksToPlaylist
  • removeTracksFromPlaylist
Tracks
  • getTrack
  • getArtistTracks
  • getSingleTrack
  • getTrackSupplement
  • getTrackDownloadInfo
  • getTrackDirectLink
Album
  • getAlbums
  • getAlbum
  • getAlbumWithTracks
Artist
  • getArtist
  • getArtists

Wrapped API

Almost all methods of the wrapped api can be called with a entity id or url

Tracks
  • getConcreteDownloadInfo
  • getMp3DownloadInfo
  • getMp3DownloadUrl
Playlist
  • getPlaylist
Album
  • getAlbum
  • getAlbumWithTracks
Artist
  • getArtist

Keywords

FAQs

Package last updated on 08 Jul 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc