敏感词检测API
Star on GitHub

中文敏感词检测

专业的中文敏感词检测服务,结合本地算法 Azure AI,为您的应用提供快速、准确、全面的内容审核。

本地+AI混合检测,更高准确率
支持中文政治、暴力、色情等全面检测
高性能 AhoCorasick 算法,毫秒级响应
Try it
POSThttps://sensetive-word-check.fly.dev/api/detect
powered by 本地算法 + Azure AI

API Documentation

const response = await fetch('https://sensetive-word-check.fly.dev/api/detect', {
  method: 'POST',
  headers: {
    'Content-Type': 'application/json',
  },
  body: JSON.stringify({
    text: '测试文本'
  })
});

const result = await response.json();
console.log(result.flagged); // true/false