ToolsBlogSign in
discord.dog
How to Change Your Discord HypeSquad House Without the Quiz (2026) — Already in Bravery but want Brilliance? Discord removed the HypeSquad quiz in 2026 — but the switch endpoint still works. Here's how to change houses in one click, no quiz required.
Features

How to Change Your Discord HypeSquad House Without the Quiz (2026)

Already in Bravery but want Brilliance? Discord removed the HypeSquad quiz in 2026 — but the switch endpoint still works. Here's how to change houses in one click, no quiz required.

·4 min read

The premise

You're already in a HypeSquad house. Maybe you took the quiz years ago when it was still in Discord settings. Now you want to switch — Bravery to Brilliance, Brilliance to Balance, whatever the case. But the HypeSquad tab in User Settings → Connections is gone in 2026, and there's no obvious way to retake the quiz.

Good news: switching houses doesn't need a quiz. It never did, technically — the quiz was always just a UX layer over a single API call. That API call still works. Here's how to use it.

What changed in 2026

Until 2026, switching HypeSquad houses worked like this:

  1. Open User Settings → Connections → HypeSquad
  2. Click Retake Quiz
  3. Answer the five questions differently this time
  4. Get sorted into a new house — badge updates immediately

In 2026, Discord removed the HypeSquad tab entirely. Quiz, switch button, leave button — all gone. The badges themselves still work, and the API endpoint behind the quiz still works, but there's no in-app UI to trigger a switch anymore.

For details on the broader change, see How to get the HypeSquad badge in 2026. This post focuses specifically on switching from one house to another.

How the endpoint works

The HypeSquad API has one endpoint that does everything:

POST /api/v9/hypesquad/online
Body: { "house_id": 1 | 2 | 3 }
house_id House Color
1 Bravery Purple
2 Brilliance Orange/red
3 Balance Green/teal

The endpoint overwrites your current house — you don't need to leave first. Send { "house_id": 2 } while in Bravery and you're instantly in Brilliance. No interim "no house" state, no cooldown, no quiz.

A successful request returns HTTP 204 (no body). HTTP 401 means your token is invalid. HTTP 429 means you're rate-limited (slow down).

The fastest way: HypeSquad Switcher

The discord.dog HypeSquad Switcher is a bookmarklet that opens a small popup inside Discord and lets you pick a house with one click. Your current house is highlighted; click any other house and the switch happens immediately.

Setup (one-time, 30 seconds):

  1. Open discord.dog/tools/hypesquad-switcher
  2. Press Ctrl+Shift+B (or ⌘+⇧+B on Mac) to show your bookmarks bar
  3. Drag the blurple HypeSquad Switcher button up to your bookmarks bar

To switch (every time after):

  1. Go to discord.com
  2. Click the HypeSquad Switcher bookmark
  3. Click the house you want — done

Your badge updates immediately. Refresh your profile in any Discord client and the new color is there. Other users see the change the next time their client refreshes your profile.

The popup is draggable and closeable. The entire source is published as plain text — read it before clicking if you want.

Manual switch via DevTools

If you'd rather not use the tool, you can fire the switch directly from Discord's browser console:

Try it yourself — no login needed

Paste any Discord user ID, username, or invite link at discord.dog. Full profiles, live presence, and server previews in seconds.

Open discord.dog
// 1 = Bravery, 2 = Brilliance, 3 = Balance
const newHouse = 2;

fetch("/api/v9/hypesquad/online", {
  method: "POST",
  headers: {
    "Content-Type": "application/json",
    "Authorization": (webpackChunkdiscord_app.push([[Symbol()], {}, r => r])
      .c.find(m => m?.exports?.default?.getToken)?.exports.default.getToken()),
  },
  body: JSON.stringify({ house_id: newHouse }),
}).then(r => console.log(r.status === 204 ? "✅ switched to house " + newHouse : "❌ " + r.status));
  1. Open Discord in your browser
  2. F12 → Console
  3. Paste the snippet, change newHouse to 1, 2, or 3
  4. Press Enter

A 204 response means the switch succeeded. Same effect as the bookmarklet — just no UI.

When to switch (and when not to)

Good reasons to switch:

  • You took the quiz years ago and your priorities have changed
  • The quiz sorted you into a house whose color you don't love
  • You're cosplaying a different house for a community event
  • You picked randomly the first time and now you have an actual preference

Bad reasons:

  • You want to switch dozens of times an hour — that's the kind of thing that gets accounts rate-limited (HTTP 429) and, if persistent, flagged
  • You think a different house gives you perks — it doesn't, they're all cosmetic
  • You're trying to dodge a server moderation rule tied to your house — house-gated moderation isn't really a thing

Once or twice a year, sure. Once or twice a minute, no.

Differences between the three houses

Bravery Brilliance Balance
Color Purple #9c84ef Orange/red #f47b67 Green/teal #45ddc0
Persona Daring, spirited, bold Inquisitive, sharp, analytical Calm, considerate, supportive
house_id 1 2 3
Badge Purple chevron shield Orange flame Green diamond
Perks None — purely cosmetic None — purely cosmetic None — purely cosmetic

That's it. There's no functional difference between the houses. Pick whatever badge color you'd rather have on your profile.

What about leaving entirely?

If you want no HypeSquad badge at all instead of switching houses, use the DELETE endpoint covered in How to remove your HypeSquad badge in 2026. The HypeSquad Switcher tool has a single "Remove HypeSquad badge" button that handles it.

Wrap-up

Switching HypeSquad houses in 2026 is one POST request. The HypeSquad Switcher on discord.dog gives you a one-click button for it; DevTools or curl work just as well if you'd rather not use a third-party tool.

For more on the HypeSquad system overall, see the HypeSquad overview. For the complete list of Discord badges and how each one is earned in 2026, see the Discord badges guide.

Frequently Asked Questions

Can I still change my HypeSquad house in 2026?

Yes. Discord removed the HypeSquad quiz UI from User Settings, but the underlying POST /api/v9/hypesquad/online endpoint still accepts house changes. Send house_id 1, 2, or 3 and your house switches immediately. The discord.dog HypeSquad Switcher does this in one click.

Do I have to leave my current house before joining a new one?

No. POST /api/v9/hypesquad/online overwrites your current house in a single call. You don't need to DELETE first. Send the new house_id and the switch happens atomically — there's no moment where you have no badge.

Is there a cooldown on switching houses?

Discord doesn't enforce a per-user cooldown on HypeSquad changes, but the endpoint is subject to the standard API rate limit. In practice you can switch as often as you like; just don't write loops that hammer the endpoint hundreds of times per minute.

Can I switch houses on Discord mobile?

Not directly. Bookmarklets only run in web browsers. But the HypeSquad change is stored on Discord's side, so once you switch via the web tool the badge updates across every Discord client — mobile, desktop, web, embeds.

Which house should I pick?

The houses are purely cosmetic — Bravery (purple, daring), Brilliance (orange, sharp), Balance (green, calm). There are no perks tied to any house. Pick the badge color you prefer, or pick based on the personality vibe you identify with. You can always switch later.

Try it yourself — no login needed

Paste any Discord user ID, username, or invite link at discord.dog. Full profiles, live presence, and server previews in seconds.

Open discord.dog

Related guides

How to Change Your Discord HypeSquad House Without the Quiz (2026) — Discord.dog