← Text & Content Tools

Profanity Filter

GET /profanity/filter

Filter profanity from text, replacing bad words with asterisks or a custom replacement. Supports adding custom words to filter.

Parameters

text required

Text to filter

add optional

Additional words to filter (comma-separated)

fill_char optional

Replacement character (default: *)

fill_text optional

Replacement text instead of characters

Example Requests

Basic usage
curl "https://nordapi.ee/api/v1/profanity/filter?text=hello+world"

Live Response

{
  "data": {
    "result": "hello world"
  },
  "success": true
}