1、质量分析

请求说明

接口地址: /api/open/api/explosive/qualityanalysis
请求方式:POST
Content-Type:application/json

输入参数说明

参数 类型 说明 必填项 缺省值
title string 标题
content string 内容

完整返回结果示例

{
  "code": "Success",
  "msg": "请求成功",
  "data": {
    "requestId": "",
    "original": {
      "listR": null,
      "score": null
    },
    "risk": [
      {
        "code": 200,
        "msg": "ok",
        "result": {
          "taskId": "",
          "action": 0,
          "labels": []
        },
        "rtype": 1
      },
      {
        "code": 200,
        "msg": "ok",
        "result": {
          "taskId": "",
          "action": 0,
          "labels": []
        },
        "rtype": 2
      }
    ],
    "extractLabel": {
      "cateinfo": {
        "category": ""
      },
      "labelinfo": {
        "title": "",
        "labels": [
          {
            "score": 0.829932,
            "tag": ""
          }
        ]
      }
    },
    "analysisTitle": null
  }
}

2、原创度检测

请求说明

接口地址: /api/open/api/explosive/originalanalysis
请求方式:POST
Content-Type:application/json

输入参数说明

参数 类型 说明 必填项 缺省值
title string 标题
content string 内容

完整返回结果示例

{
  "code": "Success",
  "msg": "请求成功",
  "data": {
    "listR": [
      {
        "code": 0,
        "content": "",
        "checkContent": "",
        "rvBaiDuStr": "85.26 %",
        "rV360Str": "54.67 %"
      },
      {
        "code": 0,
        "content": "",
        "checkContent": "",
        "rvBaiDuStr": "100 %",
        "rV360Str": "100 %"
      },
      ...
    ],
    "score": {
      "baidu": "15.22",
      "_360": "35.38",
      "score": "25.30"
    }
  }
}