← Text- & innehållsverktyg

Svordormsfilter

GET /profanity/filter

Filter profanity från text, replacing bad ord med asterisks or a anpassad replacement. Stöder adding anpassad ord to filter.

Parametrar

text obligatorisk

Text to filter

add valfri

Additional words to filter (comma-separated)

fill_char valfri

Replacement character (default: *)

fill_text valfri

Replacement text instead of characters

Exempelförfrågningar

Grundläggande användning
curl "https://nordapi.ee/api/v1/profanity/filter?text=hello+world"

Livesvar

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