Get started
Quickstart
Install the Plagion SDK, upload your first document, and get a similarity and paraphrase score back in under a minute.
terminal
npm install @plagion/sdk
import { Plagion } from "@plagion/sdk";
const plagion = new Plagion({ apiKey: process.env.PLAGION_API_KEY });
const scan = await plagion.scan.upload({
file: "./submission.pdf",
excludeQuotes: true,
excludeReferences: true,
});
const report = await plagion.scan.waitForReport(scan.id);
console.log(report.similarityScore, report.paraphraseScore);Next steps
- →Connect your LMS so scans run automatically on submission
- →Set a similarity threshold that triggers manual review
- →Enable batch scanning for a full class set or issue queue
- →Add a webhook to pull reports into your own dashboard
