Skip to main content
API Status: All Systems Operational

AI-Powered Content Moderation API

Keep your platform safe with industry-leading content moderation. Detect spam, NSFW content, toxic messages, and more with simple API calls.

Free to start
No credit card required
99.8% accuracy

Simple Integration

Get started in minutes with our straightforward REST API. Check any content with a single POST request.

  • No credit card required to start
  • Free Basic tier forever
  • Simple REST API integration
  • 99.9% uptime SLA
  • GDPR compliant
  • Plans from $4.99/month
// Check content with Discuse API
const response = await fetch('https://api.discuse.com/api/v2/check', {
  method: 'POST',
  headers: {
    'Content-Type': 'application/json',
    'X-API-Key': 'your_api_key'
  },
  body: JSON.stringify({
    content: {
      text: 'Hello, this is a test message!',
      image_urls: ['https://example.com/image.jpg']
    }
  })
});

const result = await response.json();
console.log(result.has_violations); // false
console.log(result.results.sentiment); // { toxic: 0.02, ... }
// Check content with Discuse API
const response = await fetch('https://api.discuse.com/api/v2/check', {
  method: 'POST',
  headers: {
    'Content-Type': 'application/json',
    'X-API-Key': 'your_api_key'
  },
  body: JSON.stringify({
    content: {
      text: 'Hello, this is a test message!',
      image_urls: ['https://example.com/image.jpg']
    }
  })
});

const result = await response.json();
console.log(result.has_violations); // false
console.log(result.results.sentiment); // { toxic: 0.02, ... }
Learning Center

Master Content Moderation

Explore our comprehensive guides on AI content moderation, best practices, and implementation strategies to get the most out of the Discuse API.

Ready to Protect Your Platform?

Join thousands of developers using Discuse to keep their communities safe. Start with our free tier and scale as you grow.