AutonomyCore JSON Clean API
收藏AutonomyCore JSON Clean API 数据集概述
基本信息
- API名称: AutonomyCore JSON Clean API
- 提供商: AutonomyCore
- 类别: Text Analysis
- 当前版本: 1.33.0
- API评分: 9.1 Popularity
- 服务等级: 100% Service Level
- 延迟: 318ms
- 测试通过率: 100%
- 订阅者数量: 4
定价计划
- BASIC: $0.00 / 月
- PRO: $9.00 / 月
功能概述
AutonomyCore JSON Clean API 可将杂乱的、类JSON文本转换为干净的结构化数据,并进行确定性修复。适用于在下游系统拒绝之前,对代理输出、Webhook有效负载或手动编辑的记录进行规范化。
主要能力
此API专门处理近似JSON但格式不正确的输入,可修复的常见问题包括:
- 未加引号的对象键
- 裸词字符串值
- 尾随逗号
- 格式错误的对象或数组语法
主要用途
- AI代理输出清理
- Webhook规范化
- 低代码和无代码自动化
- 在验证或存储之前进行摄取前清理
接口端点
- 方法: POST
- 路径:
/v1/json/clean
请求与响应示例
示例请求: json { "raw": "{name: "Ada", plan: starter, trialEnds: "2026-04-15", seats: 4, }" }
示例响应: json { "cleaned": { "name": "Ada", "plan": "starter", "trialEnds": "2026-04-15", "seats": 4 }, "top_level_type": "object", "repair_applied": true, "warnings": [ "Trailing commas removed", "Unquoted object keys quoted", "Bareword string values quoted" ] }
cURL调用示例
curl --request POST --url https://<your-rapid-host>/v1/json/clean --header Content-Type: application/json --header X-RapidAPI-Key: YOUR_RAPIDAPI_KEY --header X-RapidAPI-Host: <your-rapid-host> --data { "raw": "{name: "Ada", plan: starter, trialEnds: "2026-04-15", seats: 4, }" }
重要说明
- 此API设计用于清理和规范化,而非任意数据生成。
- 响应包含警告信息,以便用户了解修复了哪些内容。
- 当输入内容已接近有效JSON时,可获得最佳结果。
支持与资源
- 官方网站: https://autonomycore.com
- API文档: https://api.autonomycore.com/docs#json-clean
- 技术支持: https://autonomycore.com/support
- 服务条款: https://autonomycore.com/terms
- 隐私政策: https://autonomycore.com/privacy



