Ing basa Indonésia, tembung cetak bisa dipérang dadi: cetak tulis, cetak tulis.
Sapérangan titik pungkasan, bearer auth, transparan kredit pricing. Dibangun kanggo agensi, editorial pipelines lan LMS-adhesive piranti.
Kunci APImu
Log in kanggo njaluk kunci API sampeyan. Kunci teka karo saben akun; API checks dimbayar ing kredit.
LanggananTitik pungkasan
POST /api/v1/check/
Ngetutake teks kanggo dicek. Kembali 202 karo check_id. Badan: JSON karo medan teks, boolean jero pilihan.
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>/
Kajaba iku, ana uga sing diarani "kebijakan" (policy), ya iku kabijakan kang dijupuk kanggo ngrampungaké masalah, masalah kang ana, lan masalah kang ana.
curl https://plagiarism.free/api/v1/check/CHECK_ID/ \ -H "Authorization: Bearer YOUR_KEY"
GET /api/v1/checks/
Nyathet checks anyar, paling anyar pisanan. Paramèter query pilihan: wates (1-100, pigura 20) lan status (ing baris, rampung, gagal...). Reconciliate submissions and back your own dashboard without storing every check_id.
curl "https://plagiarism.free/api/v1/checks/?limit=20&status=done" \ -H "Authorization: Bearer YOUR_KEY"
Conto Python
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"])
JavaScript conto
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));
Pricing
Identik kaliyan situs: 1 kredit = 1,000 tembung discan, diukir munggah saben check; deep checks cost double. Credit packs valid 365 dina; subscriptions refill monthly and include the API at every level. No separate API tier, no per-seat fees. Lihat rencana lan paket
Periksaan diwiwiti kanthi asynchronous (kanggo ngakses web kanthi rata-rata 20-45 detik) - pitakonan status endpoint tinimbang tetep sambungan dibukak. HTTP 402 tegesé kredit ora cukup; jawaban kalebu apa sing bakal dibutuhaké kanggo mriksa.