API
- Using npm:
npm i api.slm.games
- Using yarn
yarn add api.slm.games
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);
});
- And
Don't
show it to anyone - Token Expiration By default, the token for API is valid for 86400 seconds (24 hours).We recommend that you refresh token expiration by call
userGetInfo
API every minute;
- userGetInfo Get current user's informationconst info = await ins.userGetInfo();
- walletGetBalance Get balance of symbolconst balance = await ins.walletGetBalance("SLM");
- diceBet Bet on dice gameconst rsp = await ins.diceBet("over", 50, "SLM", 100)
- crashBetBet on crash gameconst rsp = await ins.crashBet(2.0, "SLM", 100)
Last modified 6mo ago