/shortboxed-node

Node SDK for accessing Shortboxed's API

Primary LanguageTypeScriptMIT LicenseMIT

Push Tests Coverage

shortboxed-node

Node SDK for accessing Shortboxed's API.

Installation

npm install shortboxed-node

Usage

import {Shortboxed} from 'shortboxed-node';

const shortboxed = new Shortboxed("YOUR_API_KEY");

const response = await shortboxed.comicSearch({
    title: "Amazing Spider-man",
    issueNumber: "1",
    year: 1963,
    publisher: "Marvel Comics"
});

console.log(response.issueId)