Profanity filtering made simple.
A universal profanity filtering API that works with any programming language. Filter, detect, and sanitise inappropriate content with a single API call.
curl -X POST https://blasp.app/api/filter \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"text": "Some text to filter"}'
# Response:
# {
# "filtered": "Some text to ******",
# "has_profanity": true,
# "profanities_count": 1
# }
