Welcome to the Plagiarism Checker API documentation. This service enables you to identify copied content by scanning text across multiple sources. Ideal for content creators, students, and educators to ensure originality.
Access the Plagiarism Checker API at the following endpoint:
https://plagiarism-checker-with-source-links.p.rapidapi.com/checkplagiarism.php
To use the API, send a POST
request with the following details:
Include the following headers in your request:
Content-Type
: application/jsonx-rapidapi-host
: texttoolshub-plagiarism.p.rapidapi.comx-rapidapi-key
: [Your API Key]Requests must be formatted as JSON with the following parameter:
text
: The text to be checked for plagiarism.{
"text": "The Thirsty Crow is a popular fable which dates back to the Middle Ages in A.E. Wright’s writings – Hie lert uns der meister: Latin Commentary and the Germany Fable. It has been translated into different languages over the years, including Greeks and Romans, to spread a proverbial moral of this story."
}
The API responds with a JSON array containing:
sentence
: The sentence checked.checked
: Boolean indicating if the sentence was checked.plaged
: Boolean indicating if plagiarism was detected.matchedlink
: URL of the source where plagiarism was detected.matchedratio
: Percentage of matching text.matchedtext
: The matching text found in the source.token
: Unique token for the matched sentence.[
{
"sentence": "The Thirsty Crow is a popular fable which dates back to the Middle Ages in A.E. Wright’s writings – Hie lert uns der meister: Latin Commentary and the Germany Fable.",
"checked": true,
"plaged": true,
"matchedlink": "https://www.firstcry.com/intelli/articles/the-thirsty-crow-story-with-moral-for-kids/",
"matchedratio": 100,
"matchedtext": "Scroll down below to find the Thirsty Crow full story with moral lessons.ADVERTISEMENTS We’ll be waiting for you at the end! Origin And History Of The Thirsty Crow Story The Thirsty Crow is a popular fable which dates back to the Middle Ages in A.E. Wright’s writings – Hie lert uns der meister: Latin Commentary and the Germany Fable.",
"token": 1
},
{
"sentence": "It has been translated into different languages over the years, including Greeks and Romans, to spread a proverbial moral of this story.",
"checked": true,
"plaged": true,
"matchedlink": "https://www.firstcry.com/intelli/articles/the-thirsty-crow-story-with-moral-for-kids/",
"matchedratio": 100,
"matchedtext": "5 Nov 2022 · The Thirsty Crow is a popular fable which dates back to the Middle Ages in A.E. Wright’s writings – Hie lert uns der meister: Latin Commentary and the Germany Fable. It has been translated into different languages over the years, including Greeks and Romans, to spread a proverbial moral of this story. ADVERTISEMENTS.",
"token": 2
}
]