GET /profanity/filter
Filter profanity from text, replacing bad words with asterisks or a custom replacement. Supports adding custom words to filter.
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
| Name | Required | Default | Description |
|---|---|---|---|
text |
Yes | - | Text to filter |
add |
No | - | Additional words to filter (comma-separated) |
fill_char |
No | - | Replacement character (default: *) |
fill_text |
No | - | Replacement text instead of characters |
curl "https://nordapi.ee/api/v1/profanity/filter?text=hello+world"
{
"data": {
"result": "hello world"
},
"success": true
}