પ્લેગિયરીઝ શોધ API: લખાણને રજૂ કરો, અહેવાલ પૂછો.

અંતબિંદુઓની એક હજાર, બેરર ઓથ, પારદર્શક ક્રેડિટ કિંમત. એજન્સીઓ, સંપાદકીય પાઇપલાઇન અને LMS-અથવાતા સાધનો માટે બનાવેલ છે.

તમારી API કી

તમારી API કી મેળવવા માટે પ્રવેશ કરો. કી દરેક ખાતા સાથે આવે છે; API ચકાસણી ક્રેડિટમાં બિલ કરેલ છે.

નોંધણી કરો

અંતિમબિંદુઓ

POST /api/v1/check/

ચકાસણી માટે લખાણ રજૂ કરો. check_id સાથે ૨૦૨ પાછું આપે છે. શરીર: 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"

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"])

જાવાસ્ક્રિપ્ટ ઉદાહરણ

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 સ્તર નથી, કોઈ પ્રતિ-સેટ ફી નથી. યોજનાઓ અને પેકેજો જુઓ

ચકાસણી અસુમેળ રીતે ચલાવે છે (સત્ય, દર-સીમિત વેબ પુનઃપ્રાપ્ત કરવા ૨૦-૪૫ સેકન્ડો લે છે) - જોડાણ ખૂલ્લું રાખવાને બદલે સ્થિતિ અંતબિંદુને પૂછો. HTTP ૪૦૨ અપૂરતા ક્રેડિટનો અર્થ થાય છે; જવાબમાં ચકાસણીનો ખર્ચ સમાવેલ છે.

વારંવાર પૂછાતા પ્રશ્નો

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.