API
Installation
npm i api.slm.games yarn add api.slm.gamesGet Start
import api from "api.slm.games";
const token = "GET YOUR TOKEN FROM PROFILE PAGE";
async function main() {
const ins = new api("https://api.slm.games", token);
const info = await ins.userGetInfo();
console.log(info);
}
main()
.then(() => process.exit(0))
.catch((error) => {
console.error(error);
process.exit(1);
});API
Last updated