Validate usernames during player registration to maintain a safe gaming environment.
Gaming platforms face constant attempts to register offensive usernames. Manual review is too slow, and simple keyword filters are easily bypassed with leetspeak.
Integrate username profanity checking into your registration flow. Block inappropriate usernames in real-time before accounts are created, protecting your community.
const res = await fetch("https://api.apiverve.com/v1/usernameprofanity?username=b00bs", {
headers: { "x-api-key": "YOUR_API_KEY" },
});
const { data } = await res.json();
console.log(data);