Home Reference Source Repository

Blitzr Official Javascript SDK

A Javascript API client for the Blitzr API.

To use this client you will need an API key, you can request it at : https://blitzr.io.


Documentation

You can find the complete package documentation.

You can also refer to the official Blitzr API reference to have more informations.

Installation

This can be installed via our npm package using:

npm install blitzr-js-sdk

Getting Started

Create a instance and call API

const Blitzr = require('blitzr-js-sdk')

const blitzr = new Blitzr('myAPIKey')

blitzr.search.artist({ query: 'myArtist' }).then(result => {
    // do something with result
}, err => {
    // error callback
})