This document provides an overview of configuring the Copyleaks API to detect only identical text matches while filtering out paraphrased and minor changed content, focusing specifically on exact duplications.

Introduction

The Identical Matches Only configuration is designed for teams that need to focus specifically on exact text duplications without the complexity of similarity detection. This approach is particularly useful for detecting direct copying and verbatim plagiarism. By focusing exclusively on identical matches, teams can efficiently identify the most straightforward cases of content duplication while reducing false positives and ambiguous similarity detections that might require additional review time.

Configuration

To detect only identical matches, you must disable the settings for paraphrased content and minor changes in your API request.
  • Disable Minor Changes: Set properties.filters.minorChangesEnabled to false.
  • Disable Paraphrased Content: Set properties.filters.relatedMeaningEnabled to false.
  • Enable Internet Scanning: Set properties.scanning.internet to true to scan against online sources.
By setting both minorChangesEnabled and relatedMeaningEnabled to false, the API will only return results that are exact, word-for-word matches.

Example JSON Configuration

Here is an example of the properties object configured for an identical-only scan against internet sources.
Request Body Properties
{
  "properties": {
    "filters": {
      "minorChangesEnabled": false,
      "relatedMeaningEnabled": false
    },
    "scanning": {
      "internet": true
    }
  }
}

Next Steps

After configuring your identical matches detection:

How to Display Scan Reports

Learn how to interpret and display identical match results.

Webhooks Overview

Set up automated notifications for scan completion.

Detect Plagiarism in Text

Explore additional scanning capabilities beyond identical matches.

Book a Demo

Get personalized guidance on optimizing your identical match detection.

Support

Should you require any assistance, please contact Copyleaks Support or ask a question on Stack Overflow with the copyleaks-api tag.