Non-official Node.js client for many SMM platforms API v2.
npm i node-smm-apiconst SmmApi = require("node-smm-api");
const api = new SmmApi("your_api_url_here", "your_api_key_here");
// Get account balance
api.getBalance()
.then(balance => console.log(balance))
.catch(error => console.error(error));- Full API v2 coverage
- Promise-based interface
- Custom error handling
- TypeScript support (if applicable)
- Support many panels as shown below
- SMMFollows: official SMMFollows API documentation for available endpoints.
- SMMPakPanel: official SMMPakPanel API documentation for available endpoints.
- JustAnotherPanel: official JustAnotherPanel API documentation for available endpoints.
- SMMGo: official SMMGo API documentation for available endpoints.
Check the examples directory for complete usage examples.
MIT