Discord Tools Console
Payload Composer Messaging
Webhook Administration Management
Name-
Guild ID-
Channel ID-
HypeSquad House Switcher Console Method
You can manually assign yourself to a HypeSquad house using Discord's developer console. Warning: Never share your personal Discord token with anyone.
- Open Discord in a web browser (discord.com/app).
- Press
Ctrl + Shift + I(Windows) orCmd + Option + I(Mac) to open Developer Tools. - Navigate to the Console tab.
- Copy the script below, replace
PASTE_YOUR_TOKEN_HEREwith your user token, and select yourhouseId(1 = Bravery, 2 = Brilliance, 3 = Balance).
const houseId = 3; // 1: Bravery, 2: Brilliance, 3: Balance
const myToken = "PASTE_YOUR_TOKEN_HERE";
fetch("/api/v9/hypesquad/online", {
method: "POST",
headers: {
"Content-Type": "application/json",
"Authorization": myToken,
},
body: JSON.stringify({ house_id: houseId }),
}).then(r => console.log(r.status === 204 ? "✅ Joined house " + houseId : "❌ " + r.status));
Snowflake Decoder Offline Utility
Timestamp-
Age-
Worker ID-
Process ID-
Server Invite Checker Public API
Server Name-
Members-
Online-
Channel-
Session Audit Logs
Session logs are empty.
How to obtain a Webhook URL
- Open Discord and navigate to your Server Settings.
- Select Integrations, then click Webhooks.
- Click New Webhook.
- Assign a name, select a channel, and click Copy Webhook URL.
Obtaining User & Role IDs for Pings
Enable Developer Mode: User Settings > Advanced > toggle Developer Mode ON.
Right-click any user or role in Discord and select Copy ID, then paste into the Ping Generator.