zerogpt KI-Erkennungs-API

Die zerogpt API oder der chatgpt-Detektor ist eine API, die entwickelt wurde, um zu erkennen, ob ein gegebener Text von einem GPT-Sprachmodell generiert oder von einem Menschen geschrieben wurde.

Demnächst
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
Entwickler-API

Leistungsstarke API für Entwickler

Integrieren Sie unsere KI-Erkennungsfunktionen direkt in Ihre Anwendungen mit unserer robusten, skalierbaren API.

Einfache Integration

Einfache POST-Anfragen mit einem JSON-Anforderungstext

Blitzschnell

Schnelle Textanalyse für Anwendungs-Workflows

Globales CDN

Schneller, global verteilter API-Zugang

Unternehmenssicherheit

API-Schlüssel-Authentifizierung und Nutzungsüberwachung

API-Zugang: API-Zugang kommt bald.

Authentifizierung

Jede Anfrage muss deinen API-Schlüssel im X-API-Key-Header enthalten.

X-API-Key: YOUR_API_KEY

Endpunkt

MethodePfadBeschreibung
POST/api/v1/text/detectAnalysiere Text und gib eine KI-generierte Wahrscheinlichkeitsbewertung zurück

Erforderlicher JSON-Parameter: input_text (String).

Beispielanfrage

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."
  }'

Beispielantwort

{
  "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
    }
  ]
}

Ratenlimits & Kostenloser Zugang

API-Zugang kommt bald. Ratenlimits und Plandetails werden hier veröffentlicht, sobald die API verfügbar ist.

Benachrichtige mich

Häufig gestellte Fragen

Wie erhalte ich einen API-Schlüssel?

Die Ausgabe von API-Schlüsseln kommt bald. Schau hier vorbei, sobald er verfügbar ist.

Was ist das Ratenlimit?

Ratenlimits werden veröffentlicht, sobald die API verfügbar ist.

Welche Sprachen unterstützt die API?

Sende den zu analysierenden Text über das erforderliche input_text JSON-Feld.

Was ist die maximale Textlänge pro Anfrage?

Konsultiere die Live-Endpunktdokumentation für das aktuelle Eingabekontingent.