Songkick Sdk NodeJS
Songkick SDK written in NodeJS returning promise objects.
About
The Songkick API gives you easy access to the biggest live music database in the world: over 5 million upcoming and past concerts… and growing every day! Easily add concerts to your website or application.
Usage
const Songkick = new require('songkick')(process.env.SONGKICK_API_KEY);
Songkick.getEvent(27989954).then(JSON.parse).then(function(res) {
});
Songkick.findEvents('sk:24426').then(JSON.parse).then(function(res) {
});
Songkick.findEventsByArtist(468146).then(JSON.parse).then(function(res) {
});
Songkick.findSimilarArtist(468146).then(JSON.parse).then(function(res) {
});
Songkick.getVenue(17522).then(JSON.parse).then(function(res) {
});
Have a look into the /test
dir to find further examples.
Test suites
$ export SONGKICK_API_KEY={YOUR_SONGKICK_API_KEY} && \
npm test
Support & Contact
Having trouble with this repository? Check out the documentation at the repository's site or contact m@matchilling.com and we'll help you sort it out.
Happy Coding
:metal: