学校に戻る

新学期特別オファー

$19/mo$8.99/mo53% OFF
00
00
時間
00
00
$8.99でアップグレード

ZeroGPT AI検出API

ZeroGPT APIは、特定のテキストがAI言語モデルによって生成されたものか、人間によって書かれたものかを検出するために構築されています。このチェックを自分のアプリケーションに直接統合できます。

近日公開
api-example.js
const response = await fetch("/api/v1/text/detect", {
 method: "POST",
 headers: {
  "X-API-Key": 'YOUR_API_KEY',
  "Content-Type": 'application/json'
 },
  body: JSON.stringify({
 input_text: 'Clearly, artificial intelligence is having a moment. Back in November of 2022, San Francisco–based OpenAI debuted ChatGPT...' 
 })
 });

const data = await response.json();

/* Example Response (raw output from the live v2.4 model):
{
  api_version: "v2.4",
  model: { version: "v7.3" },
  result: {
    verdict: "human",
    display_confidence: 13.7,
    is_ai: false
  },
  inference: { words_count: 115, language: "en" },
  paragraphs: [ /* per-paragraph scores */ ]
}
*/
REST API
開発者API

開発者向けのREST API(近日公開)

ZeroGPTのAI検出を自分のアプリケーションに直接統合できるように、REST APIを構築しています。

簡単な統合

計画中:JSONリクエストボディを持つシンプルなPOSTリクエスト

迅速な分析

計画中:アプリケーションワークフロー向けの迅速なテキスト分析

信頼性のあるアクセス

計画中:一貫した信頼性のあるAPIアクセス

APIキー認証

計画中:APIキー認証と使用状況の監視

APIアクセス: APIアクセスは近日中に提供されます。

認証

すべてのリクエストには、X-API-KeyヘッダーにAPIキーを含める必要があります。

X-API-Key: YOUR_API_KEY

エンドポイント

メソッドパス説明
POST/api/v1/text/detectテキストを分析し、AI生成の確率スコアを返します。

必要なJSONパラメータ:input_text(文字列)。

リクエストの例

curl --request POST \
  --url /api/v1/text/detect \
  --header 'X-API-Key: YOUR_API_KEY' \
  --header 'Content-Type: application/json' \
  --data '{
    "input_text": "Clearly, artificial intelligence is having a moment. Back in November of 2022, San Francisco–based OpenAI debuted ChatGPT, a large language model chatbot that can mimic human writing styles, from a simple Siri-level response to a novel short story in the style of Shakespeare. The reaction was voracious. \"The College Essay Is Dead,\" proclaimed one headline from The Atlantic of ChatGPT'''s potential to assist shortcut-seeking students. Seattle Public Schools banned it from learning devices, and the University of Washington released guidance for professors unsure how to navigate the plagiarism minefield. Not even three months later, after a rumored $10 billion investment in OpenAI, Microsoft unveiled \"new Bing\"—part search engine, part AI butler—during a Redmond press event."
  }'

レスポンスの例

{
  "api_version": "v2.4",
  "performance": {
    "processing_ms": 1290
  },
  "result": {
    "verdict": "human",
    "confidence_tier": "high_human",
    "display_confidence": 13.7,
    "is_ai": false
  },
  "content_ratios": {
    "ai": 0.0,
    "human": 1.0,
    "uncertain": 0.0
  },
  "inference": {
    "language": "en",
    "paragraph_count": 2,
    "sentence_count": 6,
    "words_count": 115
  },
  "paragraphs": [
    {
      "index": 1,
      "text": "Clearly, artificial intelligence is having a moment. Back in November of 2022, San Francisco–based OpenAI debuted ChatGPT, a large language model chatbot that can mimic human writing styles, from a simple Siri-level response to a novel short story in the style of Shakespeare. The reaction was voracious. \"The College Essay Is Dead,\" proclaimed one headline from The Atlantic of ChatGPT's potential to assist shortcut-seeking students.",
      "score": 0.2493,
      "zone": "human",
      "words_count": 65
    },
    {
      "index": 2,
      "text": "Seattle Public Schools banned it from learning devices, and the University of Washington released guidance for professors unsure how to navigate the plagiarism minefield. Not even three months later, after a rumored $10 billion investment in OpenAI, Microsoft unveiled \"new Bing\"—part search engine, part AI butler—during a Redmond press event.",
      "score": 0.1764,
      "zone": "human",
      "words_count": 50
    }
  ]
}

レート制限と無料アクセス

APIアクセスは近日中に提供されます。レート制限とプランの詳細は、APIが利用可能になり次第ここに掲載されます。

通知を受け取る

よくある質問

APIキーを取得するにはどうすればよいですか?

APIキーの発行は近日中に行われます。利用可能になったらここを再度確認してください。

レート制限は何ですか?

レート制限は、APIが利用可能になり次第公開されます。

APIはどの言語をサポートしていますか?

言語サポートはまだ確定していません。APIが利用可能になった際にここに文書化されます。

リクエストごとの最大テキスト長はどれくらいですか?

入力制限はまだ確定していません。APIが利用可能になった際にここに文書化されます。