EvoMind
Log inGet API key

Documentation

One endpoint, four models. Choose a model and send text to get a safe or not safe result.

Authentication

Pass your API key as a bearer token in the Authorization header on every request.

Models

Example request

curl
curl -X POST https://api.mistyoz.com/v1/moderate \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "scam-detection",
    "text": "Congratulations, you won a prize"
  }'
javascript
const response = await fetch("https://api.mistyoz.com/v1/moderate", {
  method: "POST",
  headers: {
    "Authorization": "Bearer YOUR_API_KEY",
    "Content-Type": "application/json"
  },
  body: JSON.stringify({
    model: "scam-detection",
    text: "Congratulations, you won a prize"
  })
});

const data = await response.json();
python
import requests

response = requests.post(
    "https://api.mistyoz.com/v1/moderate",
    headers={"Authorization": "Bearer YOUR_API_KEY"},
    json={"model": "scam-detection", "text": "Congratulations, you won a prize"}
)

print(response.json())

Response

Every request returns a binary result, either safe or not safe, along with latency in milliseconds.

json
{
  "model": "scam-detection",
  "result": "not safe",
  "latency_ms": 7
}