# Integrate Your Own Casino

We provide you with a simple embedded web page that allows you to open your own casino in minutes with simple setup.

You can just use `<iframe>` to embed our gaming page to your own website

#### Embed URL formate:

```
https://slm.games/embed/games/${Game}?u=${UserID}&tokens=${Tokens}&chains=${Chains}&p=${UserID}
```

| Params | Description                               | Example                 |
| ------ | ----------------------------------------- | ----------------------- |
| Game   | Only "Dice" is supported now              | Dice                    |
| Tokens | List of tokens your site wants to support | SLM,BNB,BUSD,SOL,EOS    |
| Chains | List of Chains your site wants to support | BSC,Ethereum,Solana,EOS |
| UserID | user id                                   | 1                       |

Usable sample: &#x20;

```
https://slm.games/embed/games/Dice/?u=1&tokens=SLM,BNB,BUSD,SOL,EOS&chains=BSC,Ethereum,Solana,EOS&p=1
```

## QuickStart

```html
<html>
    <head>
        <title>Dice</title>
        <style>
         body {
             background-color: #303038;
             height: 100vh;
         }
         .main {
             width: 100%;
             height: 100%;
             border: none;
         }
        </style>
    </head>
    <body>
        <iframe class="main" src="https://slm.games/embed/games/Dice?u=1&tokens=SLM,BNB,BUSD,EOS,SOL,ETH&chains=Solana,BSC,EOS&p=01"/>
    </body>
</html>

```


---

# 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/integrate-your-own-casino.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.
