API de verificación de plagio

Integre la potente API Plagiarism Checker para detectar contenido plagiado. Obtenga la galardonada API de plagio con resultados precisos e instantáneos.

help-bussines

¿Cómo una API de verificación de plagio mejora su negocio?

Plagiarismdetector.net ofrece la API de verificación de plagio, que ciertamente acelera la detección de similitudes en su contenido. Esto le ayudará a rastrear cualquier duplicación en su contenido para evitar sanciones por cometer plagio. Recoger los fragmentos de plagio en un texto aumenta la calidad del contenido y evita que los motores de búsqueda te penalicen por contenido plagiado

deep-search

API de verificación de plagio de búsqueda profunda

La API Plagiarism Checker garantiza la originalidad y la integridad del contenido al detectar contenido duplicado. Sus capacidades de búsqueda profunda permiten un análisis exhaustivo escaneando miles de millones de páginas. Nuestra API se conecta perfectamente con varias plataformas, mejorando la verificación de contenido al hacer que el proceso sea más rápido y preciso. Es fantástico para desarrolladores, blogueros y propietarios de empresas.

tickmark-img

Detección de plagio oración por oración

La API de verificación de plagio ejecuta una prueba de plagio oración por oración para detectar cualquier instancia menor de duplicación en el contenido en lugar de depender de una única verificación de similitud en todo el texto.

fast-and-accurate

Escaneo rápido de contenido

La API de plagio puede brindarle resultados impecables al instante. Esto le permitirá concentrarse en otras tareas importantes relacionadas con el negocio para aumentar la productividad en lugar de esperar más para recibir los resultados de la verificación de plagio.

safe-and-secure

Enfoque en la seguridad y la privacidad

El verificador de plagio API proporcionado por Plagiarismdetector.net estará protegido con un certificado SSL adicional que garantiza que ningún tercero pueda acceder a los archivos cargados por los usuarios. Como resultado, se garantizará la privacidad de sus archivos de texto.

easy-to-install

Fácil de configurar

Nuestra API de plagio es simple y fácil de configurar. No se requieren conocimientos técnicos especiales para ejecutar esta tarea.

multiple-webside-usage

Uso de varios sitios web

Los usuarios pueden utilizar esta API en varios dispositivos. Por lo tanto, no es necesario verificar la cuenta cada vez que se configura esta API.

tickmark-img

Detección de contenido de IA

Ahora puede verificar el contenido de su empresa con nuestro galardonado detector de IA. Asegúrese de que todas sus bases estén cubiertas, desde la inteligencia artificial hasta la violación de derechos de autor.

fast-and-accurate

Pasos para obtener nuestra API de plagio

Para obtener nuestra API de plagio, debe seguir unos sencillos pasos.

Vaya directamente a la página de precios.

Infórmenos sus requisitos.

Le proporcionamos una API de detector de plagio para que la integre.

Lo mantendremos informado, así que permanezca atento.

fast-and-accurate

La documentación de la API de detección de plagio es importante

La documentación de la API Plagiarism Checker es importante porque ayuda a los desarrolladores a integrar la API de código abierto de forma eficaz. Equípese con esta API para impulsar su estrategia de desarrollo de contenido. cURL, NodeJS y Python son tres herramientas y tecnologías distintas ampliamente utilizadas en el desarrollo de software para diferentes propósitos. También obtendrá el plan de documentación de la API para verificar el estado de nuestra API de plagio en los principales lenguajes de programación como cURL, NodeJS y Python.

Integración de la API de detección de plagio (licencia y clave)

Para integrar la API de detección de plagio en su sistema o aplicación, siga estos pasos:

Seleccione la API de detección de plagio

Seleccione la API de detección de plagio

Obtenga acceso a nuestra clave API de plagio.

Lea la documentación de la API Plagiarism Checker

Lea la documentación de la API Plagiarism Checker

Consulte la documentación de la API del detector de plagio para ver:

  • Métodos de autenticación
  • Puntos finales para enviar contenido.
  • Límites de velocidad
  • Formato de respuesta
Development Environment

Configura tu entorno de desarrollo

Si estás escribiendo código para la configuración con la API, necesitarás:

  • Lenguaje/entorno de programación: Python, Node.js, cURL, etc.
  • Clave API de nuestro servicio de detección de plagio

cURL

CURL (URL del cliente) le permite transferir datos con URL utilizando una herramienta de línea de comandos. Puede utilizar nuestro comando cURL proporcionado en su terminal para verificar el estado de la API:

Verificar estado de cuenta:

curl -X POST https://plagiarismdetector.net/api/info

-d "token=YOUR_TOKEN"

Respuesta
{
    "name":  "pd", 
    "total_words" :   1500, 
    "used_words" :    1000, 
    "account_status" :  "active"
}
      

Verifique el plagio:

curl -X POST https://plagiarismdetector.net/api/checkplag

-d "token=YOUR_TOKEN"

-d "exclude_urls=["EXCLUDE URL1","EXCLUDE URL2","EXCLUDE URL3"]"

-d "data = On the red table, there was a purple curtain. Underneath that was a silver cage. Inside that cage there was a green teddy bear, with the number 43 written on its chest with a black permanent marker. Its eyes were as green as envy."

-d "url = PAGE_URL"

Respuesta
{
    "recall":  true, 
    "totalQueries" :  5, 
    "key" :  1, 
    "hash" :  "04eb63e8b9588ac40a0b4515900eb6f7"  
}
      

Nota

Nuestra API Plagiarism Checker ahora también admite comprobaciones de URL. Puede enviar contenido en el parámetro de datos o la URL de una página en el parámetro de URL. Se requiere uno de los dos parámetros, datos o URL.

NodeJS

NodeJS ejecuta JavaScript en el motor JavaScript V8 de Chrome. Los desarrolladores también pueden utilizar el módulo HTTP integrado o una biblioteca popular como Axios para analizar el estado de la API del comprobador de plagio.

Verificar estado de cuenta:

var http = require("https");
var options = {
"method": "POST",
"hostname": [
    "plagiarismdetector.net",
   
],
"path": [
    "api",
    "info"
]
};

var req = http.request(options, function (res) {
var chunks = [];

res.on("data", function (chunk) {
    chunks.push(chunk);
});

res.on("end", function () {
    var body = Buffer.concat(chunks);
    console.log(body.toString());
});
});

req.write("Content-Disposition: form-data; name="token"
YOUR_TOKEN");
req.end();
        
Respuesta
{
    "name":  "pd", 
    "total_words" :   1500, 
    "used_words" :    1000, 
    "account_status" :  "active"
}
      

Verifique el plagio:

Este método se utiliza cuando desea comprobar el contenido duplicado de un artículo, publicación o documento.

var http = require("http");

var options = {
"method": "POST",
"hostname": [
    "plagiarismdetector",
    "net"
],
"path": [
    "api",
    "checkplag"
]
};

var req = http.request(options, function (res) {
var chunks = [];

res.on("data", function (chunk) {
    chunks.push(chunk);
});

res.on("end", function () {
    var body = Buffer.concat(chunks);
    console.log(body.toString());
});
});

req.write("Content-Disposition: form-data; name='token'
YOUR_TOKEN
name='exclude_urls' ["EXCLUDE URL1","EXCLUDE URL2","EXCLUDE URL3"]
name='data'
On the red table, there was a purple curtain. Underneath that was a silver cage.  Inside that cage there was a green teddy bear, with the number 43 written on its chest with a black permanent marker. Its eyes were as green as envy.");
name='url' PAGE_URL
");
req.end();
        
Respuesta
{
    "recall":  true, 
    "totalQueries" :  5, 
    "key" :  1, 
    "hash" :  "04eb63e8b9588ac40a0b4515900eb6f7"  
}
      

Python

Python es un lenguaje de programación interpretado de alto nivel popular que es fácil de aprender y comprender. Es compatible con varios paradigmas de programación, como programación funcional, orientada a objetos y procedimental. Puede utilizar el paquete de solicitudes de Python para verificar el estado de nuestra API de plagio.

Verificar estado de cuenta:

import requests

url = "https://plagiarismdetector.net/api/info"
payload={'token': 'API_TOKEN'}
headers = {}

response = requests.request("POST", url, headers=headers, data=payload)

print(response.text)
        
Respuesta
{
    "name":  "pd", 
    "total_words" :   1500, 
    "used_words" :    1000, 
    "account_status" :  "active"
}
      

Verifique el plagio:

Este método se utiliza cuando desea comprobar el contenido duplicado de un artículo, publicación o documento.

import requests

url = "https://plagiarismdetector.net/api/checkplag"

payload={'token': 'API_TOKEN','exclude_urls': '["EXCLUDE URL1","EXCLUDE URL2","EXCLUDE URL3"]',
'data': 'On the red table, there was a purple curtain. Underneath that was a silver cage.  Inside that cage there was a green teddy bear, with the number 43 written on its chest with a black permanent marker. Its eyes were as green as envy.',
'url':'PAGE_URL'}
headers = {}

response = requests.request("POST", url, headers=headers, data=payload)

print(response.text)
        
Respuesta
{
    "recall":  true, 
    "totalQueries" :  5, 
    "key" :  1, 
    "hash" :  "04eb63e8b9588ac40a0b4515900eb6f7"  
}
      

URL de devolución de llamada:

Después de recibir la respuesta de la primera solicitud, debe realizar la solicitud en la siguiente URL con los parámetros proporcionados que se proporcionan en la primera respuesta.

curl -X GET https://plagiarismdetector.net/api/query-footprint/{hash}/{key}

Respuesta
{
    "recall":  true, 
    "hash" : "04eb63e8b9588ac40a0b4515900eb6f7", 
    "key" :  2, 
}
      

Nota

Repita la URL de devolución de llamada con nuevos parámetros hasta {recordar: verdadero}

Respuesta de la API del verificador de plagio después de completar la tarea:

Recibirá la siguiente respuesta de nuestra API cuando finalice la tarea.

Respuesta
{
    "recall":  false, 
    "totalQueries" :  5, 
    "plagPercent" :  20, 
    "uniquePercent" :  80, 
    "details" :    [
    {
        "query": "On the red table, there was a purple curtain.",
        "error": 0,
        "unique": "true"
    },
    {
        "query": "Underneath that was a silver cage.",
        "error": 0,
        "unique": "true"
    },
    {
        "query": "Inside that cage there was a green teddy bear",
        "error": 0,
        "unique": "true"
    },
    {
        "query": "The first of four orbital test flights occurred in 1981 leading to operational flights beginning in 1982.",
        "error": 0,
        "unique": "false",
        "webs": [
    {
        "title": "Examples for “orbital test flight” and how to use it - Nyanglish",
        "url": "http://nyanglish.com/orbital-test-flight",
        "des": "the first of four orbital test flights occurred in 1981, leading to operational flights beginning in 1982. they were used on a total of 135 missions from 1981 to 2011, launched from the kennedy space center (ksc) in florida."
    },
    {
        "title": "Space Shuttle - Wikipedia",
        "url": "https://en.m.wikipedia.org/wiki/Space_Shuttle",
        "des": "the first of four orbital test flights occurred in 1981, leading to operational flights beginning in 1982, all launched from the kennedy space center, florida.first operational flight of the space shuttle, first mission to carry four astronauts; sts-5. april 4, 1983. challenger."
    },
    {
        "title": "Advanced Crew Escape Suit - WikiVisually",
        "url": "https://wikivisually.com/lang-tr/wiki/Advanced_Crew_Escape_Suit",
        "des": "the first of four orbital test flights occurred in 1981, leading to operational flights beginning in 1982, all launched from the kennedy space center, florida. the system was retired from service in 2011 after 135 missions..."
    },
    {
        "title": "Space Shuttle Launch Jigsaw Puzzle",
        "url": "https://www.DailyJigsawPuzzles.net/plane-jigsaws/space-shuttle-launch_616.html",
        "des": "the first of four orbital test flights occurred in 1981, leading to operational flights beginning in 1982. it was used on a total of 135 missions from 1981 to 2011, launched from the kennedy space center (ksc) in florida. he first orbiter, enterprise..."
    },
    {
        "title": "STS/Space Shuttle | Maxwell Hunter",
        "url": "http://www.maxwellhunter.com/projects/space-shuttle",
        "des": "the first of four orbital test flights occurred in 1981, leading to operational flights beginning in 1982. they were used on a total of 135 missions from 1981 to 2011, launched from the kennedy space center (ksc) in florida."
    },
    {
        "title": "Мягкая посадка - WikiVisually",
        "url": "https://wikivisually.com/lang-ru/wiki/%D0%9C%D1%8F%D0%B3%D0%BA%D0%B0%D1%8F_%D0%BF%D0%BE%D1%81%D0%B0%D0%B4%D0%BA%D0%B0",
        "des": "the first of four orbital test flights occurred in 1981, leading to operational flights beginning in 1982, all launched from the kennedy space center, florida. the system was retired from service in 2011 after 135 missions..."
    },
    {
        "title": "GEOSPACE:",
        "url": "https://www.csun.edu/~mb304231/",
        "des": "the first of four orbital test flights occurred in 1981 leading to operational flights beginning in 1982. the system is scheduled to be retired from service in 2011 after 135 launches. major missions have included launching numerous satellites and interplanetary probes..."
    },
    {
        "title": "Space Shuttle Landing On The Moon - ma",
        "url": "http://machicon-akihabara.info/2017simage-space-shuttle-landing-on-the-moon.awp",
        "des": "the first of four orbital test flights occurred in 1981, leading to operational flights beginning in 1982. in addition to the prototype whose completion was cancelled, five complete shuttle systems were built and used on a total of 135 missions from 1981 to 2011..."
    },
    {
        "title": "Space Shuttle on Launchpad Minecraft Project",
        "url": "https://www.planetminecraft.com/project/space-shuttle-on-launchpad/",
        "des": "the first of four orbital test flights occurred in 1981, leading to operational flights beginning in 1982. they were used on a total of 135 missions from 1981 to 2011, launched from the kennedy space center (ksc) in florida."
    },
    {
        "title": "List of Space Shuttle missions - Mashpedia Free Video Encyclopedia",
        "url": "http://www.mashpedia.com/List_of_Space_Shuttle_missions",
        "des": "the first of four orbital test flights occurred in 1981, leading to operational flights beginning in 1982. from 1981 to 2011 a total of 135 missions were flown, launched from kennedy space center (ksc) in florida."
    }
      ]
    },
    {
            "query": "with the number 43 written on its chest with a black permanent marker.",
            "error": 0,
            "unique": "true"
    }
     ]
}
      

Preguntas frecuentes (FAQ)

Close Popup