diff --git a/apps/docs/app/components/streamerbot/StreamerbotPlayground.vue b/apps/docs/app/components/streamerbot/StreamerbotPlayground.vue
index ef41bca..e6ffb12 100644
--- a/apps/docs/app/components/streamerbot/StreamerbotPlayground.vue
+++ b/apps/docs/app/components/streamerbot/StreamerbotPlayground.vue
@@ -1,9 +1,14 @@
@@ -46,21 +56,29 @@ const lastRequestResponse = ref
{{ lastRequestResponse }}
diff --git a/apps/docs/content/3.api/0.config.md b/apps/docs/content/3.api/0.config.md
index 3f04df0..0bff55d 100644
--- a/apps/docs/content/3.api/0.config.md
+++ b/apps/docs/content/3.api/0.config.md
@@ -34,6 +34,13 @@ If you've modified your `WebSocket Server` settings in Streamer.bot, make sure t
```
::
+ ::field{name=password type=String}
+ Change the password to match your Streamer.bot `WebSocket Server` authentication settings, if enabled.
+ ```ts
+ const client = new StreamerbotClient({ password: 'LyfeSaverSeventyFourIsMyDaddy' });
+ ```
+ ::
+
::field{name=scheme type="`ws` | `wss`"}
Only change this if you are using a secure tunnel or otherwise know what you are doing.
- Default: `ws`
diff --git a/apps/docs/content/3.api/1.requests.md b/apps/docs/content/3.api/1.requests.md
index 54ad239..2ae6824 100644
--- a/apps/docs/content/3.api/1.requests.md
+++ b/apps/docs/content/3.api/1.requests.md
@@ -914,4 +914,54 @@ const response = await client.getUserGlobal('twitch', '12345678');
// Fetch a specific user global variable by user ID and variable name
const response = await client.getUserGlobal('twitch', '12345678', 'test');
```
+::
+
+## `sendMessage`
+_Requires Streamer.bot v0.2.5_
+
+Send a chat message to the selected platform
+
+#### Signature
+`sendMessage(platform: 'twitch' | 'youtube' | 'trovo', message: string, bot = false, internal = true): Promise