Skip to content

Instantly share code, notes, and snippets.

@pypy-vrc
Last active August 1, 2026 07:28
Show Gist options
  • Select an option

  • Save pypy-vrc/46c644c8287bb1905f32afe55d664f83 to your computer and use it in GitHub Desktop.

Select an option

Save pypy-vrc/46c644c8287bb1905f32afe55d664f83 to your computer and use it in GitHub Desktop.
remove red badge from VRChat web inventory
(async () => {
const res = await fetch(
"https://vrchat.com/api/1/inventory?n=100&offset=0&notFlags=ugc&notTypes=bundle&archived=false&seen=false&isNavBar=true",
);
const data = await res.json();
for (const item of data.data) {
await fetch(`https://vrchat.com/api/1/inventory/${item.id}`, {
method: "PUT",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({ isSeen: true }),
});
}
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment