Skip to main content
测试版

用 API 完成投稿前检查

在你的产品或工作流中调用参考文献真实性核验、AI 写作检测和来源质量检查。一次请求,结果直接随响应返回。

查看 API 文档
cURL
curl -X POST https://api.nubint.ai/api/v1/preflight/check \
  -H "X-API-Key: $NUBINT_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "text": "Full manuscript text...",
    "references": [
      "Spiegel, K., Leproult, R., & Van Cauter, E. (1999). Impact of sleep debt on metabolic and endocrine function. The Lancet, 354(9188), 1435-1439.",
      "Anderson, R. T., & Liu, M. (2023). Chronotype misalignment and cognitive load in higher education. Educational Neuroscience Quarterly, 11(4), 501-519."
    ]
  }'

让判定可以放心使用

检查结果会直接呈现给研究者。所以我们宁可诚实地说“不知道”,也不给出错误的确定。

不断定为“虚假”

专著、法规和较早的期刊本来就不在论文索引中。未找到的文献会单独标为“索引外”,由用户自行确认。

不把失败当作通过

如果索引或检测模型没有响应,该部分会标为 failed。不会出现查询失败却返回“没有问题”的情况。

判定附带依据

每项判定都附有依据(标识符匹配、标题匹配等)和匹配论文的书目信息。仅标题相似的候选会以 nearMissTitle 单独返回,便于修正书写错误。

不隐瞒 AI 检测的局限

为减少把人写的文字判为 AI 的误报,阈值设定得较保守。因此漏检较多,未被标记并不代表是人写的。

三步发出第一个请求

  1. 1

    获取 API 密钥

    在 Nubint 应用的 设置 → API/MCP 中创建密钥。密钥只在创建后显示一次,请立即保存。

  2. 2

    发送请求

    在 X-API-Key 请求头中放入密钥,发送参考文献列表。右侧示例可直接复制使用。

  3. 3

    读取结果

    只需查看 status 不是 verified 的条目,数量就是 summary.needsReview。

curl -X POST https://api.nubint.ai/api/v1/citations/verify \
  -H "X-API-Key: $NUBINT_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "references": [
      "Spiegel, K., Leproult, R., & Van Cauter, E. (1999). Impact of sleep debt on metabolic and endocrine function. The Lancet, 354(9188), 1435-1439.",
      "Anderson, R. T., & Liu, M. (2023). Chronotype misalignment and cognitive load in higher education. Educational Neuroscience Quarterly, 11(4), 501-519."
    ]
  }'
响应
{
  "results": [
    {
      "text": "Spiegel, K., Leproult, R., & Van Cauter, E. (1999). ...",
      "status": "verified",
      "basis": "title_exact",
      "paper": {
        "canonicalId": "https://doi.org/10.1016/s0140-6736(99)01376-8",
        "csl": {
          "type": "article-journal",
          "title": "Impact of sleep debt on metabolic and endocrine function",
          "container-title": "The Lancet",
          "DOI": "10.1016/s0140-6736(99)01376-8"
        }
      },
      "csl": null,
      "matchedTitle": "Impact of sleep debt on metabolic and endocrine function",
      "nearMissTitle": null
    },
    {
      "text": "Anderson, R. T., & Liu, M. (2023). ...",
      "status": "off_index",
      "basis": "parsed",
      "paper": null,
      "csl": {
        "type": "article-journal",
        "title": "Chronotype misalignment and cognitive load in higher education",
        "container-title": "Educational Neuroscience Quarterly"
      },
      "matchedTitle": null,
      "nearMissTitle": null
    }
  ],
  "summary": {
    "total": 2,
    "verified": 1,
    "uncertain": 0,
    "offIndex": 1,
    "unparseable": 0,
    "needsReview": 1
  }
}

想在 ChatGPT、Claude 中使用?

无需开发。把 Nubint 连接到 ChatGPT 或 Claude,无需 API 密钥,只要登录就能在对话中调用同样的检查。

MCP 连接方法

FAQ

获取密钥,发出第一个请求

API 和 MCP 目前为测试版,Pro、Max 方案可用。同一个密钥两者通用。

查看 API 文档