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.
- 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.
Make an API request
1const formData = new FormData();2formData.append('image', fileInput.files[0]);34const res = await fetch('https://nsfw.aayus.me/detect', {5 method: 'POST',6 body: formData,7})