Skip to content

madsbuch/storebox-api

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Storebox API

This is an unofficial API to Storebox.com.

Usage

npm install storebox-api --save 
var sb = require('storebox-api').Storebox("[obtained key]");

sb.cards(function(err, result){
    console.log("")
    console.log("Cards:")
    for (var i = result.length - 1; i >= 0; i--) {
        console.log(result[i].name);
    }
});

The [obtained key] can be found by logging in to Storebox, inspect, and find the cookie named 'auth-token' (Yes, it is a huge string).

About

Unofficial api for storebox.com

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published