பிளாஜியரிசம் கண்டுபிடிப்பு API: உரை அனுப்பு, அறிக்கை கேட்க.

ஒரு கையளவு முடிவு புள்ளிகள், பையர் ஆதரி, வெளிப்படையான கடன் விலை. நிறுவனங்கள், கட்டுரை குழாய்கள் மற்றும் LMS- அண்டை கருவிகள்.

உங்கள் API விசை

உங்கள் API விசை பெறுவதற்கு நுழையவும். ஒவ்வொரு கணக்கிலும் விசை வரும்; API சோதனைகள் கிரெடிட்களில் கட்டணம் செலுத்தப்படும்.

பதிவு செய்

முடிவுப் புள்ளிகள்

POST /api/v1/check/

உரை சோதனைக்கு அனுப்பவும். check_ id உடன் 202 திரும்பும். உடல்: JSON உரை புலத்துடன், விருப்பமான deep boolean.

curl -X POST https://plagiarism.free/api/v1/check/ \
  -H "Authorization: Bearer YOUR_KEY" \
  -H "Content-Type: application/json" \
  -d '{"text": "The text you want to check..."}'

GET /api/v1/check/<check_id>/

நிலையைப் பற்றிய கருத்துக் கேட்பு; நிலை முடிந்தவுடன் முழுமையான அறிக்கையும் சேர்க்கப்படுகிறது: மதிப்பெண், ஒவ்வொரு வாக்கியத்திற்கும் பொருத்தமான வகைகள் நம்பகத்தன்மை மற்றும் மூல உரை, மற்றும் மூல பட்டியலுடன்.

curl https://plagiarism.free/api/v1/check/CHECK_ID/ \
  -H "Authorization: Bearer YOUR_KEY"

GET /api/v1/checks/

உங்கள் சமீபத்திய சோதனைகளை பட்டியலிடு, புதியது முதலில். தேர்ந்தெடுக்கக்கூடிய கேள்வி அளவுருக்கள்: வரம்பு (1- 100, முன்னிருப்பு 20) மற்றும் நிலை (வரிசை, முடிந்தது, தோல்வி...). ஒவ்வொரு check_ id சேமிக்காமல் சமர்ப்பிப்புகளை ஒத்துழைக்கவும் உங்கள் சொந்த டெஸ்க்பார்டை திரும்ப பெறவும்.

curl "https://plagiarism.free/api/v1/checks/?limit=20&status=done" \
  -H "Authorization: Bearer YOUR_KEY"

பைத்தான் உதாரணம்

import time
import requests

API = "https://plagiarism.free/api/v1/check/"
HEADERS = {"Authorization": "Bearer YOUR_KEY"}

r = requests.post(API, json={"text": open("essay.txt").read()}, headers=HEADERS)
check_id = r.json()["check_id"]

while True:
    report = requests.get(f"{API}{check_id}/", headers=HEADERS).json()
    if report["status"] in ("done", "failed"):
        break
    time.sleep(3)

print(report["score_pct"], "% matched")
for source in report["sources"]:
    print(source["pct_of_document"], source["url"])

ஜாவாஸ்கிரிப்ட் உதாரணம்

const API = "https://plagiarism.free/api/v1/check/";
const headers = { "Authorization": "Bearer YOUR_KEY", "Content-Type": "application/json" };

const { check_id } = await fetch(API, {
  method: "POST", headers, body: JSON.stringify({ text })
}).then(r => r.json());

let report;
do {
  await new Promise(res => setTimeout(res, 3000));
  report = await fetch(`${API}${check_id}/`, { headers }).then(r => r.json());
} while (!["done", "failed"].includes(report.status));

விலை நிர்ணயம்

தளத்திற்கு ஒத்த: 1 கடன் = 1,000 வார்த்தைகளை வருடி, ஒரு சோதனைக்கு சுழற்றப்பட்டது; ஆழமான சோதனைகள் இரு மடங்கு செலவாகும். கடன் தொகுப்புகள் 365 நாட்கள் செல்லுபடியாகும்; மாதந்தோறும் புதுப்பிக்கப்படும் பதிவு மற்றும் ஒவ்வொரு நிலையிலும் API ஐ உள்ளடக்கியது. தனி API தளங்கள் இல்லை, ஒரு-அமர்வு கட்டணம் இல்லை. திட்டங்கள் மற்றும் தொகுப்புகளை பார்க்கவும்

சரிபார்ப்புகளை ஒத்திசைவின்றி இயக்கவும் (உண்மையான, விகித- வரையறுக்கப்பட்ட இணைய மீட்டெடுப்பு 20- 45 வினாடிகளை எடுக்கும்) - இணைப்பை திறந்த நிலையில் வைத்திருப்பதை விட நிலை முடிவு புள்ளியை கேட்கவும். HTTP 402 என்பது போதுமான கிரெடிட் இல்லை; சரிபார்ப்பு செலவுகள் உள்ளன.

அடிக்கடி கேட்கப்படும் கேள்விகள்

Two endpoints. POST /api/v1/check/ with your text returns a check_id; GET /api/v1/check/check_id/ returns status while the check runs and the full report JSON (score, matched sentences, sources) when done. Auth is a Bearer key from your account page. Code samples in curl, Python and JavaScript are below.

The same transparent unit as the site: 1 credit per 1,000 words scanned, rounded up per check. Credit packs start at $4.99 for 30 credits and are valid a full year; the $7.99/month Starter plan includes 60 credits and API access. No per-seat fees, no separate API pricing tier.

A check takes roughly 20-45 seconds because it performs real, rate-limited web retrieval and page comparison - the API is asynchronous for that reason. Submissions queue fairly; paid checks get priority. Poll the status endpoint every few seconds rather than holding the connection open.

Everything the web report shows: overall matched percentage, per-sentence match type (exact / near / none) with confidence, the matched source excerpt for each flagged sentence, and the source list with URLs and per-source match percentages. Enough to render your own report UI or gate a workflow.

Yes - that is what it is for: LMS-adjacent tools, editorial workflows, agency content pipelines. Volume is metered purely by credits, and the per-check word cap is 25000 words. If you need sustained high volume, contact us and we will provision for it rather than let queues degrade.