# API

## Installation <a href="#installation" id="installation"></a>

* Using npm:

```shell
  npm i api.slm.games
```

* Using yarn

```shell
  yarn add api.slm.games
```

## Get Start <a href="#get-start" id="get-start"></a>

```javascript
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 Token\
  You can get API Token from <https://slm.games/profile>

  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;

## API <a href="#api" id="api"></a>

* userGetInfo\
  Get current user's information

  ```javascript
  const info = await ins.userGetInfo();
  ```
* walletGetBalance\
  Get balance of symbol

  ```javascript
  const balance = await ins.walletGetBalance("SLM");
  ```
* diceBet\
  Bet on dice game

  ```javascript
  const rsp = await ins.diceBet("over", 50, "SLM", 100)
  ```
* crashBet

  Bet on crash game

  ```javascript
  const rsp = await ins.crashBet(2.0, "SLM", 100)
  ```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.slm.games/api.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
