
Profanity Filter API
Detect and censor profanity in user-generated text. Whole-word, case-insensitive matching with leetspeak normalization (catches sh!t, @ss, d1ck) and no false positives on clean words like "classic". Returns the matched words, a count, and a censored version.
Available Endpoints
Request Parameters
API URL
Please subscribe to see the API URL
Headers
X-Api-Key
Query Parameters
censor(Optional)
text(Required)
Please subscribe to see the actual API URL
import axios from 'axios';
const url = '{API_URL}';
const { data } = await axios.get(url, {
headers: { 'X-Api-Key': 'YOUR_API_KEY' }
});