Plagion

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