Last updated 3 months ago
Check if a ban is active for a specific userId and experienceId.
Information regarding an ban.
const response = await fetch('https://sentinel.metatable.dev/api/v1/is-banned', { method: 'POST', headers: { "Content-Type": "application/json" }, body: JSON.stringify({ "userId": 0, "experienceId": 0 }), }); const data = await response.json();
{ "isBanned": false, "isAppealed": false, "isActive": false, "expires": 0 }