alert-img Close

Documentazione dell'API

L'API del software antiplagio ti aiuta a integrare il software antiplagio con il tuo CMS, CRM o LMS. Puoi creare un sistema di controllo del plagio in tempo reale oppure puoi sviluppare un rilevatore che mostri i risultati immediatamente. Puoi modificare i risultati in base alle tue necessità. Ad esempio puoi anche inviare un URL da escludere durante il controllo del plagio. Tutti i dettagli sono menzionati di seguito.

Flusso di lavoro delle API di controllo del plagio

Prima di tutto devi registrarti su check-plagiarism.com e accedere al tuo account per ottenere la chiave API. Per utilizzare le API l'e-mail del tuo account deve essere verificata oppure puoi passare a un membro premium (verificherà automaticamente il tuo indirizzo e-mail). Cose importanti che devi sapere prima di inviare una richiesta API.

  1. 1

    Devi inviare richieste di post sugli url API; Il metodo Ottieni non è supportato. Puoi ottenere i dettagli su come inviare una richiesta di posta qui.

  2. 2

    Il parametro della chiave API deve essere inviato in ogni richiesta.

  3. 3

    Riceverai una risposta JSON una volta che la tua richiesta avrà avuto esito positivo.

Controlla lo stato dell'account:

Invia una richiesta di post con la chiave API del tuo account a:

https://www.check-plagiarism.com/apis

Controlla lo stato dell'account:

curl -X POST https://www.check-plagiarism.com/apis \ -d "key=YOUR_KEY"

Risposta:

{ ? "name":"Jhon Smith", ? "queries_limit" : 1500, ? "queries_used" : 1000, ? "account_status" : "active" }

Controllo del plagio per l'articolo completo o il contenuto di un post:

Se vuoi verificare rapidamente il plagio dell'intero contenuto, devi inviare il testo completo a questo URL:

https://www.check-plagiarism.com/apis/checkPlag

Puoi inviare fino a 5.000 parole per richiesta. se il tuo testo supera le 5.000 parole, puoi dividerlo in due sezioni e inviarlo uno per uno.

cURL

curl -X POST https://www.check-plagiarism.com/apis/checkPlag \ -d "key = YOUR_KEY" -d "data = i am checking plagiarism ........... black permanent marker."

PHP cURL

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL,"https://www.check-plagiarism.com/apis/checkPlag");
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS,
    "key=YOUR_KEY&data='A paraphrasing tool is a sentence rephraser that is ... used as an anti-plagiarism tool.'");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($ch);
curl_close ($ch);
echo $response;
                     

Risposta:

{
  "sources": [
    {
      "title": "Check-Plagiarism API Documentation",
      "link": "https://www.check-plagiarism.com/id/plagiarism-checker-api-documentation",
      "count": 4,
      "percent": 100
    },
    {
      "title": "Web search results - plagiarism scrambler",
      "link": "https://search.zonealarm.com/Search/?&q=plagiarism%20scrambler",
      "count": 1,
      "percent": 50
    }
  ],
  "totalQueries": 3,
  "plagPercent": 100,
  "paraphrasePercent": 0,
  "uniquePercent": 0,
  "excludeURL": null,
  "details": [
    {
      "unique": "false",
      "query": "A paraphrasing tool is a sentence rephraser that is used to change specific words with synonyms and rearrange sentence structure.",
      "version": 3,
      "display": {
        "url": "https://search.zonealarm.com/Search/?&q=plagiarism%20scrambler",
        "des": "A paraphrasing  tool  is  a  sentence  rephraser  that  is  used  to  change  specific  words  with  synonyms  a nd rearrange  sentence  structure.  It rephrases text, essays,�?..."
      },
      "paraphrase": "false"
    },
    {
      "query": "It rephrases text, essays, and articles using advanced AI technology.",
      "version": 3,
      "unique": "false",
      "display": {
        "url": "https://www.check-plagiarism.com/id/plagiarism-checker-api-documentation",
        "des": "A paraphrasing tool is a sentence rephraser that is used to change specific words with synonyms and rearrange sentence structure. It rephrases text, essays, and articles using advanced AI technology. The paraphrase tool is also used as an anti-plagiarism tool. Our paraphrasing tool (paraphraser) uses NLP technology to ...\""
      },
      "excludeByUrl": false,
      "paraphrase": "false"
    },
    {
      "unique": "false",
      "query": "The paraphrase tool is also used as an anti-plagiarism tool.",
      "version": 3,
      "display": {
        "query": "the paraphrase tool is also used as an anti-plagiarism tool.",
        "url": "https://www.check-plagiarism.com/id/plagiarism-checker-api-documentation",
        "des": "synonyms and rearrange sentence structure. it rephrases text essays and articles using advanced ai technology. the paraphrase tool is also used as an anti-plagiarism tool. our paraphrasing tool (paraphraser) uses nlp technology to ...\\ }"
      },
      "paraphrase": "false"
    }
  ]
}

Having problem while integrating API with your system, let us do this job for you. contact us.