Nagłówek modelu
BliskoAPI 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.
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.
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.
W każdym żądaniu należy przesłać parametr klucza API.
Po pomyślnym przesłaniu żądania otrzymasz odpowiedź w formacie JSON.
Wyślij prośbę o publikację za pomocą klucza API swojego konta na adres:
https://www.check-plagiarism.com/apis
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.
$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;
{ "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" } ] }