轻松集成
通过直观的 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, ... }常见问题
开发者在接入审核 API 前常问的问题,这里都有答案。