Skip to content

Latest commit

 

History

History
29 lines (18 loc) · 647 Bytes

README.md

File metadata and controls

29 lines (18 loc) · 647 Bytes

StockX API

Offical StockX API Node package ( see official docs & example)

Install

npm i @albertogferrario/stockx-api

Authentication

For accessing StockX public API you need to provide the JWT token provided after the OAuth2 Authentication Code flow, see official docs.

Usage

Init

const StockxApi = require("@albertogferrario/stockx-api");

const stockxApi = new StockxApi(<API_KEY>, <JWT>);

Catalog

TO DO