Skip to main content
Our request has changed! Please use https://api.unrealapi.com for the base url
POST /moderate-text Detects inappropriate language, links, Discord invite links, mass mentions, and more. Includes a list of 100+ banned words.

Headers

NameValue
apikey28-Character API Key

Body

NameTypeDescription
textstringThe text to moderate

Response

{
  "safe": false,
  "results": {
    "containsLinks": true,
    "containsInviteLinks": false,
    "containsBannedWords": true,
    "containsMassMentions": true,
    "issuesFound": [
      "Text contains a URL.",
      "Text contains banned words.",
      "Text contains mass mentions."
    ]
  }
}