> For the complete documentation index, see [llms.txt](https://docs.slm.games/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.slm.games/integrate-your-own-casino.md).

# 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
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

```
GET https://docs.slm.games/integrate-your-own-casino.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
