ส่วนหัวของโมเดล
ปิดAPI ซอฟต์แวร์ต่อต้านการลอกเลียนแบบช่วยให้คุณสามารถรวมซอฟต์แวร์ลอกเลียนแบบเข้ากับ CMS, CRM หรือ LMS ของคุณ คุณสามารถสร้างเครื่องมือตรวจสอบการลอกเลียนแบบแบบเรียลไทม์ หรือคุณสามารถพัฒนาเครื่องมือตรวจจับที่แสดงผลพร้อมกันได้ คุณสามารถเปลี่ยนผลลัพธ์ได้ตามความต้องการ ตัวอย่างเช่น คุณยังสามารถส่ง URL เพื่อยกเว้นเมื่อตรวจสอบการลอกเลียนแบบได้ รายละเอียดทั้งหมดมีการกล่าวถึงด้านล่าง
ก่อนอื่นคุณต้องลงทะเบียนที่ check-plagiarism.com และไปที่บัญชีของคุณเพื่อรับคีย์ API หากต้องการใช้ API อีเมลบัญชีของคุณจะต้องได้รับการยืนยัน หรือคุณสามารถอัปเกรดเป็นสมาชิกระดับพรีเมียมได้ (ระบบจะตรวจสอบที่อยู่อีเมลของคุณโดยอัตโนมัติ) สิ่งสำคัญที่คุณต้องรู้ก่อนส่งคำขอ API
คุณต้องส่งคำขอโพสต์บน URL ของ API ไม่รองรับวิธีการรับ วิธีส่งคำขอโพสต์ คุณสามารถดูรายละเอียดได้ที่นี่
ต้องส่งพารามิเตอร์คีย์ API ในทุกคำขอ
คุณจะได้รับการตอบกลับ JSON หลังจากคำขอของคุณสำเร็จ
ส่งคำขอโพสต์ด้วยรหัส API บัญชีของคุณที่:
https://www.check-plagiarism.com/apis
หากคุณต้องการตรวจสอบการลอกเลียนแบบเนื้อหาทั้งหมดอย่างรวดเร็ว คุณต้องส่งข้อความฉบับเต็มไปที่ URL นี้:
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" } ] }