GET /profanity/filter
Filtre profanity from text, replacing bad words with asterisks or a custom replacement. Compatible con adding custom words to filter.
text
requerido
Text to filter
add
opcional
Additional words to filter (comma-separated)
fill_char
opcional
Replacement character (default: *)
fill_text
opcional
Replacement text instead of characters
| Nombre | Requerido | Predeterminado | Descripcion |
|---|---|---|---|
text |
Si | - | 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
}