Screen user-submitted usernames for inappropriate content.
Users try to sneak inappropriate words into usernames using creative spelling, leetspeak, and hidden meanings. Basic word filters miss most of these attempts.
Our Username Profanity API catches creative bypasses like a$$hole, sh1t, and hidden profanity. Validate usernames at registration to keep your platform safe for all users.
const res = await fetch("https://api.apiverve.com/v1/usernamegenerator?email=sean%40mail.com&count=10", {
headers: { "x-api-key": "YOUR_API_KEY" },
});
const { data } = await res.json();
console.log(data);