ContentKit AI
收藏ContentKit AI 数据集概述
基本信息
- 数据集名称: ContentKit AI
- 类别: Text Analysis
- 提供者: One
- API版本: v1 (current)
- API地址: https://rapidapi.com/agencyonemediaonline/api/contentkit-ai
API性能指标
- 流行度: 8.9
- 服务等级: 100%
- 延迟: 4940ms
订阅计划与定价
- BASIC: $0.00 / 月
- PRO: $7.99 / 月
- ULTRA: $24.99 / 月
- MEGA: $79.99 / 月
API概述
ContentKit AI 是一个完整的AI内容工具包,专为开发人员、内容团队和SaaS平台构建。它提供4个强大的端点,用于处理AI生成的内容。所有端点均接受JSON并返回JSON。
端点详情
1. POST /detect — 检测AI内容
分析任何文本,并获得其是否由AI编写的概率分数(0-100)。
请求示例: json { "text": "Your text to analyze here (min 20 chars, max 15,000 chars)" }
响应示例: json { "success": true, "data": { "ai_score": 90, "human_score": 10, "confidence": "high", "verdict": "likely_ai", "signals": ["Repetitive transition phrases", "Uniform sentence structure"], "summary": "Text exhibits strong indicators of AI generation." } }
2. POST /humanize — 人性化AI文本
将机械的AI文本转换为自然、人性化的写作。
请求示例: json { "text": "Your AI-generated text here", "tone": "casual" }
(tone为可选参数。选项:casual, formal, academic, professional, friendly)
响应示例: json { "success": true, "data": { "humanized_text": "The naturally rewritten version...", "original_length": 293, "humanized_length": 318, "tone_applied": "casual" } }
3. POST /rewrite — 以任意语气重写
以特定的语气或风格完全重写文本。
请求示例: json { "text": "Your text here", "tone": "academic" }
(tone为必需参数。选项:formal, casual, academic, professional, friendly, persuasive, simple, technical)
响应示例: json { "success": true, "data": { "rewritten_text": "The rewritten version...", "tone": "academic" } }
4. POST /readability — 可读性分析
获取可读性分数、年级水平和具体的改进建议。
请求示例: json { "text": "Your text to analyze here" }
响应示例: json { "success": true, "data": { "readability_score": 45, "grade_level": "College", "avg_sentence_length": 28, "issues": [ { "type": "wordiness", "text": "problematic phrase", "suggestion": "simpler alternative" } ], "strengths": ["Good vocabulary range"], "summary": "Text is complex and could benefit from simplification." } }
错误处理
所有错误返回格式: json { "success": false, "error": "Description of what went wrong" }
限制
- 最小文本长度: 20个字符
- 最大文本长度: 15,000个字符
- 速率限制: 取决于您的订阅计划
认证
所有请求都需要在请求头中包含您的RapidAPI密钥(订阅后会自动处理)。
适用场景
- 内容营销团队
- SaaS平台
- SEO机构
- 教育科技平台
- 自由撰稿人
- 任何处理AI生成内容的人员



