内容安全所需能力,一站配齐
由先进 AI 模型驱动的全方位审核工具,专为需要可靠内容过滤的开发者打造。
覆盖各种场景的 API 解决方案
为你的平台需求选择合适的审核方案。
轻松集成
通过直观的 REST API,几分钟即可开始使用。只需一次 POST 请求,就能检查任意内容。
- 开始使用无需信用卡
- 免费 Basic 套餐永久可用
- 简单的 REST API 集成
- 99.9% 可用性 SLA
- 符合 GDPR 要求
- 套餐低至 $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, ... }