From 159473250c9232b2f644139d6955b298bb65811f Mon Sep 17 00:00:00 2001 From: doqedev Date: Thu, 9 Oct 2025 23:42:48 -0700 Subject: [PATCH] changed checkusers endpoint --- src/class.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/class.ts b/src/class.ts index b34bf20..b0437f1 100644 --- a/src/class.ts +++ b/src/class.ts @@ -72,7 +72,7 @@ export class TASEClient { if(UserIDs.length > 10000) throw new Error("The amount of UserIDs must be less than 10,000.") if(UserIDs.length < 1) throw new Error("The amount of UserIDs must be atleast 1 character.") - const Response = await fetch(TASEApi + `/api/v1/mass-check`, { + const Response = await fetch(TASEApi + `/api/v1/check/mass`, { headers: { authorization: `Bearer ${this.token}`, "content-type": "application/json"