← Back to Blogs Tutorials 6 min read

How to Get a Discord HypeSquad Badge in 2026 Without the Quiz

How to Get a Discord HypeSquad Badge in 2026 Without the Quiz

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.

HypeSquad Bravery badge
1

Bravery

Bold, adventurous, and spirited.

HypeSquad Brilliance badge
2

Brilliance

Curious, analytical, and inventive.

HypeSquad Balance badge
3

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.

Important: The method below is unofficial. It is not an official Discord support or account-recovery procedure. Use it only on your own account, do not automate or spam requests, and stop if Discord changes the endpoint or returns an error.

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

  1. Open Discord in your browser and press F12.
  2. Click the Network tab and filter the request list for api.
  3. Click any Discord API request, then find the authorization header under Request Headers.
  4. Copy the header value and keep it private. You will paste that value into PASTE_TOKEN in the command.
Treat your token like a password. Anyone who gets it may be able to control your account. Never post it in chat, send it to another person or paste it into a random website. Use only your own browser's DevTools (F12) and never share screenshots of it.

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 IDIconHouseCommon description
1
HypeSquad Bravery badge
Bravery
Bold, daring, and spirited.
2
HypeSquad Brilliance badge
Brilliance
Curious, sharp, and analytical.
3
HypeSquad Balance badge
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?
The HypeSquad quiz and settings tab were removed, so there is no visible official way to join a house. The unofficial browser-console request in this guide can still work while Discord's endpoint accepts the request.
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?
Run the same POST command again with a different house_id. Use 1 for Bravery, 2 for Brilliance, or 3 for Balance.
How do I remove my HypeSquad badge?
Use the same endpoint with 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?
In Discord's browser DevTools, open Network, filter for api, select any Discord API request, and copy the authorization header from Request Headers. Keep the value private and use only your own account.
Are HypeSquad badges official?
The badge and the three online houses are Discord features. The browser-console procedure in this article is unofficial because it reaches the endpoint directly instead of using Discord's removed HypeSquad interface.
Is the HypeSquad Events badge the same thing?
No. HypeSquad Events was a separate historical program. This guide covers the three online house badges: Bravery, Brilliance, and Balance.