A library for calling the Printify API from Node.js written in TypeScript
Install printify-nodejs with npm
npm install printify-nodejs
import { PrintifyClient } from "printify-nodejs";
const client = new PrintifyClient({
token: "PRINTIFY_API_TOKEN",
version: "v1", // API Version
debug: false, // Optional, whether to console log debug message from api calls.
});
const shops = await client.getShops();
Api reference available on tsdocs.dev
If you have any feedback, please reach out to us at suosio@suosio.com or in the issues tab.