alert-img Close

API dokumentation

Anti plagiat programvara API hjälper dig att integrera plagiat programvara med ditt CMS, CRM eller LMS. Du kan bygga en plagiatkontroll i realtid eller så kan du utveckla en detektor som visar resultat på en gång. Du kan ändra resultaten efter dina behov. Du kan till exempel också skicka en url att utesluta när du kontrollerar plagiat. Alla detaljer nämns nedan.

Arbetsflöde för kontrollplagiat-API:er

Först och främst måste du registrera dig på check-plagiarism.com och gå till ditt konto för att hämta API-nyckeln. För att använda API:er måste din e-postadress verifieras eller så kan du uppgradera till premiummedlem (den kommer automatiskt att verifiera din e-postadress). Viktiga saker du måste veta innan du skickar en api-förfrågan.

  1. 1

    Du måste skicka inläggsförfrågningar på api-adresserna; Get-metoden stöds inte. Hur du skickar en postförfrågan kan du få information här.

  2. 2

    API-nyckelparameter måste skickas i varje begäran.

  3. 3

    Du kommer att få ett JSON-svar efter att din begäran har lyckats.

Kontrollera kontostatus:

Skicka en inläggsbegäran med din konto-API-nyckel på:

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

Kontrollera kontostatus:

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

Svar:

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

Kontrollera plagiat för hela artikeln eller ett inläggsinnehåll:

Om du snabbt vill kontrollera plagiat för hela innehållet måste du skicka din fullständiga text på denna url:

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

Du kan skicka upp till 5 000 ord per förfrågan. om du har text som är större än 5 000 ord kan du dela upp din text i två sektioner och skicka den en efter en.

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;
                     

Svar:

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