← Herramientas de texto y contenido

Filtro de profanidad

GET /profanity/filter

Filtre profanity from text, replacing bad words with asterisks or a custom replacement. Compatible con adding custom words to filter.

Parametros

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

Ejemplos de solicitudes

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

Respuesta en vivo

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