反抄襲軟件 API 可幫助您將抄襲軟件與您的 CMS、CRM 或 LMS 集成。您可以構建實時抄襲檢查器,也可以開發立即顯示結果的檢測器。您可以根據需要更改結果。例如,您還可以發送一個 url 以在檢查抄襲時排除。所有細節都在下面提到。
首先,您必須在 check-plagiarism.com 上注冊并轉到您的帳戶以獲取 API 密鑰。要使用 API,您的帳戶電子郵件必須經過驗證,或者您可以升級為高級會員(它將自動驗證您的電子郵件地址)。在發送 api 請求之前您必須了解的重要事項。
您必須在 api url 上發送 post 請求;不支持獲取方法。如何發送帖子請求,您可以在此處獲取詳細信息。
API密鑰參數必須在每個請求中發送。
請求成功后,您將收到 JSON 響應。
使用您的帳戶 API 密鑰發送發布請求:
https://www.check-plagiarism.com/apis
如果您想快速檢查整個內容是否抄襲,那么您必須將全文發送到以下網址:
https://www.check-plagiarism.com/apis/checkPlag
每個請求最多可以發送 5,000 個字。如果您的文本超過 5,000 字,那么您可以將文本分成兩部分并逐一發送。
$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" } ] }