¿Cómo una API antiplagio mejora su negocio?
Plagiarismdetector.net ofrece la API de Plagio, que acelera la detección de similitudes en tu contenido. Esto te ayudará a rastrear cualquier duplicación para evitar penalizaciones por plagio. Detectar fragmentos de plagio en un texto aumenta la calidad del contenido y evita que los motores de búsqueda te penalicen por contenido plagiado.
API de plagio de búsqueda profunda
La API de Plagio garantiza la originalidad y la integridad del contenido al detectar contenido duplicado. Sus funciones de búsqueda profunda permiten un análisis exhaustivo escaneando miles de millones de páginas. Nuestra API se conecta a la perfección con diversas plataformas, lo que mejora la verificación de contenido al agilizar y aumentar la precisión del proceso. Es ideal para desarrolladores, blogueros y empresas.
Detección de plagio oración por oración
La API 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.
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.
Enfoque en la seguridad y la privacidad
La API de plagio de Plagiarismdetector.net está protegida con un certificado SSL adicional que garantiza que ningún tercero pueda acceder a los archivos subidos por los usuarios. Como resultado, se garantiza la privacidad de sus archivos de texto.
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.
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.
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.
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 plagio para su integración.
Lo mantendremos informado, así que permanezca atento.
La documentación de la API antiplagio es importante
La documentación de la API de Plagio es importante porque ayuda a los desarrolladores a integrar la API de código abierto eficazmente. Adáptate a esta API para impulsar tu 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 recibirás el plan de documentación de la API para comprobar el estado de nuestra API de Plagio en los principales lenguajes de programación como cURL, NodeJS y Python.
Integración de API de plagio (licencia y clave)
Para integrar la API de plagio en su sistema o aplicación, siga estos pasos:
Seleccione la API de detección de plagio
Obtenga acceso a nuestra clave API de plagio.
Lea la documentación de la API de plagio
Consulte la documentación de la API de plagio para:
- Métodos de autenticación
- Puntos finales para enviar contenido.
- Límites de velocidad
- Formato de respuesta
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"
{
"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"
{
"recall": true,
"totalQueries" : 5,
"key" : 1,
"hash" : "04eb63e8b9588ac40a0b4515900eb6f7"
}
Nota
Nuestra API de plagio ahora también permite la comprobación de URL. Puede enviar contenido en el parámetro "data" o la URL de una página en el parámetro "URL". Se requiere uno de los dos parámetros (data o URL).
NodeJS
NodeJS ejecuta JavaScript en el motor V8 de Chrome. Los desarrolladores también pueden usar el módulo HTTP integrado o una biblioteca popular como Axios para analizar el estado de la API 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();
{
"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();
{
"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)
{
"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)
{
"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}
{
"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 de plagio después de completar la tarea:
Recibirá la siguiente respuesta de nuestra API cuando finalice la tarea.
{
"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"
}
]
}
Consultar planes de API