API de detección de IA de zerogpt

La API de zerogpt o el detector de chatgpt es una API diseñada para detectar si un texto dado ha sido generado por un modelo de lenguaje GPT o escrito por un humano.

Próximamente
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 */ ]
}
*/
API REST
API para desarrolladores

API potente para desarrolladores

Integra nuestras capacidades de detección de IA directamente en tus aplicaciones con nuestra API robusta y escalable.

Integración fácil

Solicitudes POST simples con un cuerpo de solicitud JSON

Rápido como un rayo

Análisis de texto rápido para flujos de trabajo de aplicaciones

CDN global

Acceso a la API rápido y distribuido globalmente

Seguridad Empresarial

Autenticación con clave API y monitoreo de uso

Acceso a la API: El acceso a la API estará disponible pronto.

Autenticación

Cada solicitud debe incluir tu clave API en el encabezado X-API-Key.

X-API-Key: YOUR_API_KEY

Endpoint

MétodoRutaDescripción
POST/api/v1/text/detectAnaliza texto y devuelve un puntaje de probabilidad generado por IA

Parámetro JSON requerido: input_text (cadena).

Ejemplo de Solicitud

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

Ejemplo de Respuesta

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

Límites de tasa y acceso gratuito

El acceso a la API estará disponible pronto. Los límites de tasa y los detalles del plan se publicarán aquí una vez que la API esté disponible.

Notificarme

Preguntas Frecuentes

¿Cómo obtengo una clave API?

La emisión de claves API estará disponible pronto. Vuelve aquí una vez que esté disponible.

¿Cuál es el límite de tasa?

Los límites de tasa se publicarán una vez que la API esté disponible.

¿Qué idiomas soporta la API?

Envía el texto a analizar a través del campo JSON input_text requerido.

¿Cuál es la longitud máxima del texto por solicitud?

Consulta la documentación del endpoint en vivo para conocer el límite actual de entrada.