spotifyr

1.1.0 • Public • Published

spotifyr Build Status

Retrieve data from spotify public REST API for a search item

works without authentication

Install

npm install --save spotifyr

Usage

const spotifyr = require('spotifyr');
 
spotifyr('avicii', 'artist', function(error, response) {
    if(error) {
        console.log(error);
    } else {
        console.log(response);
    }
});

API

search(query, type, callback)

Returns json data for requested query

query

Type: string

Query for requesting data

type

Type: string

Valid types : album, artist, playlist, track

callback

Type: function

Takes two arguments, error and response respectively

License

MIT © Rajika Imal

Readme

Keywords

Package Sidebar

Install

npm i spotifyr

Weekly Downloads

1

Version

1.1.0

License

MIT

Last publish

Collaborators

  • rajikaimal