🚫 NSFW Image Detector

Detecting toxic content has always been slow and expensive. Not anymore. Introducing a fast, free and open-source NSFW Image Detector for your web apps.

  • Fast and cheap to run
  • Pretty accurate
  • 100% free & open-source
> curl -X POST
> -F "file=@/path/to/image.png"
> https://api.nsfw.aayus.me/detect

"NSFW images ruin communities"

- every community manager ever

Moderating NSFW content is a thankless job. If you run a web app with any kind of user-uploaded images, it's your responsibility to keep things appropriate. That's a challenge when users upload content that shouldn't be seen in professional environments or by younger audiences.

There's a better way

Make an API request

1const formData = new FormData();
2formData.append('image', fileInput.files[0]);
3
4const res = await fetch('https://nsfw.aayus.me/detect', {
5 method: 'POST',
6 body: formData,
7})