# Source Match Checker

**Use case:** 

Compare your text with passages from found public sources. See source links and similarity scores for each match.

## Input

```json
{
  "target": "text",
  "text": "The quick brown fox jumps over the lazy dog."
}
```

## Output

```json
{
  "plagiarismPercent": {
    "label": "Plagiarism percent",
    "format": "number"
  },
  "risk.level": {
    "label": "Risk level",
    "format": "string"
  },
  "risk.explanation": {
    "label": "Risk explanation",
    "format": "string"
  },
  "sentenceSummary.total": {
    "label": "Total sentences",
    "format": "integer"
  },
  "sentenceSummary.matched": {
    "label": "Matched sentences",
    "format": "integer"
  },
  "sentenceSummary.unique": {
    "label": "Unique sentences",
    "format": "integer"
  },
  "sources": {
    "label": "Matched sources",
    "format": "array"
  },
  "referenceComparisons": {
    "label": "Reference comparisons",
    "format": "array"
  }
}
```

## About this Actor

This example demonstrates how to use [Plagiarism Checker](https://apify.com/maximedupre/plagiarism-checker) with a specific input configuration. Visit the [Actor detail page](https://apify.com/maximedupre/plagiarism-checker) to learn more, explore other use cases, and run it yourself.