alert-img Blisko

Dokumentacja API

API oprogramowania antyplagiatowego pomaga zintegrować oprogramowanie antyplagiatowe z systemem CMS, CRM lub LMS. Możesz zbudować narzędzie do sprawdzania plagiatów w czasie rzeczywistym lub opracować detektor, który natychmiast pokaże wyniki. Możesz zmieniać wyniki w zależności od potrzeb. Na przykład możesz także wysłać adres URL, który chcesz wykluczyć podczas sprawdzania plagiatu. Wszystkie szczegóły są wymienione poniżej.

Przepływ pracy w interfejsach API sprawdzających plagiat

Przede wszystkim musisz zarejestrować się na check-plagiarism.com i przejść do swojego konta, aby pobrać klucz API. Aby móc korzystać z interfejsów API, adres e-mail Twojego konta musi zostać zweryfikowany. W przeciwnym razie możesz przejść na członkostwo premium (automatycznie zweryfikuje Twój adres e-mail). Ważne rzeczy, które musisz wiedzieć przed wysłaniem żądania API.

  1. 1

    Musisz wysyłać żądania postów na adresy URL interfejsu API; Metoda Get nie jest obsługiwana. Jak wysłać prośbę o pocztę, szczegóły znajdziesz tutaj.

  2. 2

    W każdym żądaniu należy przesłać parametr klucza API.

  3. 3

    Po pomyślnym przesłaniu żądania otrzymasz odpowiedź w formacie JSON.

Sprawdź stan konta:

Wyślij prośbę o publikację za pomocą klucza API swojego konta na adres:

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

Sprawdź stan konta:

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

Odpowiedź:

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

Sprawdzanie plagiatu pod kątem całego artykułu lub treści posta:

Jeśli chcesz szybko sprawdzić plagiat całej treści, musisz przesłać pełny tekst na ten adres URL:

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

W jednym żądaniu możesz wysłać maksymalnie 5000 słów. jeśli masz tekst większy niż 5000 słów, możesz podzielić go na dwie części i wysłać jedną po drugiej.

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;
                     

Odpowiedź:

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