← Outils de texte et contenu

Filtre de grossièretés

GET /profanity/filter

Filtrez les grossièretés du texte, replacing bad words avec asterisks ou a custom replacement. Prend en charge adding custom words to filter.

Paramètres

text requis

Text to filter

add optionnel

Additional words to filter (comma-separated)

fill_char optionnel

Replacement character (default: *)

fill_text optionnel

Replacement text instead of characters

Exemples de requêtes

Utilisation de base
curl "https://nordapi.ee/api/v1/profanity/filter?text=hello+world"

Réponse en direct

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