Discord HypeSquad badges are profile badges for the Bravery, Brilliance, and Balance houses. Discord removed the quiz and HypeSquad settings tab in 2026, but the endpoint used by the old interface can still accept a house assignment.
This guide covers what the badges mean, the one unofficial browser-console method to add or change one, how to remove it, and how to keep your Discord token safe while doing it. For the wider catalog, see our complete Discord badges guide.
What Are Discord HypeSquad Badges?
HypeSquad badges identify one of Discord's three online houses. They are cosmetic profile badges, not Nitro benefits, server permissions, or a special account tier. Your house does not unlock extra channels, discounts, or moderation powers.
The online houses are different from the old HypeSquad Events program. Events was a historical community and ambassador program; it is not the badge covered by the method in this article and cannot be newly earned through this process.
Bravery
Bold, adventurous, and spirited.
Brilliance
Curious, analytical, and inventive.
Balance
Calm, thoughtful, and supportive.
Can you still get a HypeSquad badge in 2026?
Discord removed the visible HypeSquad quiz and settings tab, so there is no normal official screen for choosing a house. The badges still identify the three online houses, and the old web endpoint may still accept a direct request from a logged-in account.
This guide explains that unofficial route for your own account: choose a house ID, send the request from Discord's website, and check for a successful 204 response. It does not grant perks, server permissions, or Nitro benefits, and it can stop working if Discord changes the endpoint.
How to Get a HypeSquad Badge in 2026
The only unofficial method covered in this guide is a direct request from Discord's own web client. You do not need to install an extension or send your token to a third-party website.
Before you start
- Use Discord in a desktop browser at discord.com.
- Make sure you are logged into the account that should receive the badge.
- Open DevTools with F12, then use the Network tab and the Console tab.
Step 1: Copy your own authorization token
- Open Discord in your browser and press F12.
- Click the Network tab and filter the request list for
api. - Click any Discord API request, then find the authorization header under Request Headers.
- Copy the header value and keep it private. You will paste that value into
PASTE_TOKENin the command.
Step 2: Run the HypeSquad command
With Discord still open, click the Console tab. Replace PASTE_TOKEN with the authorization value you copied, then run this command:
fetch("/api/v9/hypesquad/online",{method:"POST",headers:{Authorization:"PASTE_TOKEN","Content-Type":"application/json"},body:JSON.stringify({house_id:1})}).then(r=>console.log(r.status===204?"✅ Done":"❌ "+r.status));The command sends a normal browser request to Discord's HypeSquad endpoint. If the console prints ✅ Done, refresh your profile and the badge should appear. A status such as 401 usually means the token was copied incorrectly or is no longer valid.
Which HypeSquad House Should You Choose?
There is no gameplay, moderation, or Nitro advantage to any house. Choose the one you prefer by changing the number in house_id:
| House ID | Icon | House | Common description |
|---|---|---|---|
1 | Bravery | Bold, daring, and spirited. | |
2 | Brilliance | Curious, sharp, and analytical. | |
3 | Balance | Calm, considerate, and supportive. |
How to Change Your HypeSquad Badge
You can change houses with the same method. Run the command again, but replace 1 with 2 for Brilliance or 3 for Balance. For example, changing house_id:1 to house_id:2 requests Brilliance.
Use the correct number only: 1 = Bravery, 2 = Brilliance, and 3 = Balance. When Discord returns 204, reload your profile to check the updated badge.
How to Remove the HypeSquad Badge
To remove the badge, remove the house_id: text from the request body rather than sending another house assignment. The leave operation is a DELETE request to the same endpoint and does not need a JSON body:
fetch("/api/v9/hypesquad/online",{method:"DELETE",headers:{Authorization:"PASTE_TOKEN"}}).then(r=>console.log(r.status===204?"✅ Removed":"❌ "+r.status));Replace PASTE_TOKEN with the same private authorization value, run the request in Discord's Console, and look for ✅ Removed. After a successful response, refresh Discord or your profile viewer. The badge should disappear while your other badges, servers, messages, and account data remain unchanged.
Watch the HypeSquad walkthrough
Prefer a visual guide? This walkthrough covers choosing a house, changing it, and removing the badge.
Why Did Discord Remove HypeSquad?
In 2026, Discord removed the HypeSquad quiz and the related settings tab. The old flow let you answer a few questions and then assigned you to Bravery, Brilliance, or Balance. That in-app entry point is no longer available on the web, desktop, or mobile clients.
Discord has not published a detailed explanation for the removal. Existing house assignments were preserved, and the API route behind the old join flow remains available. That is why an unofficial browser request can still work even though there is no visible HypeSquad button.
Final takeaway
Discord removed the HypeSquad quiz in 2026, but the online house endpoint can still be reached from your own logged-in browser. Use 1 for Bravery, 2 for Brilliance, or 3 for Balance, and use the endpoint's DELETE request when you want the badge removed. Keep your token private and use the request sparingly.
FAQ: HypeSquad Badges
Are HypeSquad badges still obtainable in 2026?
What do the HypeSquad house IDs mean?
1 is Bravery, 2 is Brilliance, and 3 is Balance. Change the number in house_id to request a different house.How do I change my HypeSquad house?
house_id. Use 1 for Bravery, 2 for Brilliance, or 3 for Balance.How do I remove my HypeSquad badge?
method:"DELETE", your private authorization header, and no request body. A successful HTTP 204 response means the house assignment was removed.Where do I find my Discord authorization token?
api, select any Discord API request, and copy the authorization header from Request Headers. Keep the value private and use only your own account.
