alert-img Dichtbij

API-documentatie

Anti-plagiaatsoftware API helpt u plagiaatsoftware te integreren met uw CMS, CRM of LMS. U kunt een realtime plagiaatcontrole bouwen of u kunt een detector ontwikkelen die de resultaten in één keer laat zien. U kunt de resultaten naar behoefte wijzigen. U kunt bijvoorbeeld ook een url meesturen om uit te sluiten bij de controle op plagiaat. Alle details staan ​​hieronder vermeld.

Workflow van API's voor het controleren van plagiaat

Allereerst moet u zich registreren bij check-plagiarism.com en naar uw account gaan om de API-sleutel te bemachtigen. Om API's te gebruiken moet het e-mailadres van uw account worden geverifieerd of u kunt upgraden naar een premiumlid (uw e-mailadres wordt automatisch geverifieerd). Belangrijke zaken die u moet weten voordat u een API-verzoek verzendt.

  1. 1

    Je moet postverzoeken sturen naar de API-URL's; Get-methode wordt niet ondersteund. Hoe u een postverzoek kunt verzenden, vindt u hier voor meer informatie.

  2. 2

    De API-sleutelparameter moet bij elk verzoek worden verzonden.

  3. 3

    U ontvangt een JSON-antwoord nadat uw verzoek is gelukt.

Accountstatus controleren:

Stuur een postverzoek met de API-sleutel van uw account naar:

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

Accountstatus controleren:

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

Antwoord:

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

Plagiaat controleren op het volledige artikel of de inhoud van een bericht:

Als u snel plagiaat voor de hele inhoud wilt controleren, moet u uw volledige tekst naar deze url sturen:

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

U kunt maximaal 5.000 woorden per verzoek verzenden. Als u een tekst heeft die groter is dan 5.000 woorden, kunt u uw tekst in twee delen opdelen en deze één voor één verzenden.

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;
                     

Antwoord:

{
  "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.