Data resources are accessed via standard HTTPS requests in UTF-8 format to API endpoint.
Data resources are accessed via standard HTTPS requests in UTF-8 format to API endpoint.
Base URL for API requests is
These headers are required to make a successful request:
Rate limiting enables web api to share access bandwidth to its resources equally across all users of the api
Rate limiting is applied as per the application and regardless of the number of users who use the application concurrently.
All API responses and some of the requests data are JSON API compatible.
Most of API calls return JSON response body that include information about the resource and one or more contextual HATEOAS links. Use these links to request more information about and construct an API flow that is relative to a specific request.
Visit JSON API web-site for more information. There are a lot of ready-to-use implementations: http://jsonapi.org/implementations.
You can get your api token from your profile after purchasing plan
GO to: https://www.plagiarismchecker.co/pro/profile
curl -X POST /
https://www.plagiarismchecker.co/api/info
-H "Authorization: Bearer {token}"
{ "User Name": "User Name here", "User Email": "hello@gmail.com", "Total Queries": 100, "Used Queries": 12, "Status": "active" }
curl -X POST /
https://www.plagiarismchecker.co/api/checkplag
-H "Authorization: Bearer {token}"
-d "data = Free plagiarism checker detects duplication from your research papers, blogs, assignments, and websites. Copy and paste your content in the text box below and then click the Check plagiarism button."
{ "hash": "f32ec8f00ed923ef05e4c8635c64d297", "totalQueries": 2, "recall": true, "key": 1 }
After getting response from first request you have to make request on following url with given parameters which is given in first response.
curl -X POST /
https://www.plagiarismchecker.co/api/query-footprint/{hash}/{key}
-H "Authorization: Bearer {token}"
{ "recall": true, "hash": "adas9a8s7d98as7d9as7d9as7", "key": 2 }
Repeat CallBack url with new parameters until {recall: true}
{ "recall": false, "hash": "f32ec8f00ed923ef05e4c8635c64d297", "plagPercent": 100, "uniquePercent": 0, "details": [ { "query": "Free plagiarism checker detects duplication from your research papers, blogs, assignments, and websites.", "error": 0, "unique": "false", "webs": [ { "title": "Plagiarism Checker - No 1 Free plagiarism Detector", "url": "https://www.plagiarismchecker.co/", "des": "Free plagiarism checker detects duplication from your research papers, blogs, assignments, and websites.", "is_url": true }, { "title": "Advance Plagiarism Checker - A to Z SEO Tools", "url": "https://free-seotools.eu/plagiarism-checker", "des": "Free plagiarism checker detects duplication from your research papers, blogs, assignments, and websites.", "is_url": true }, { "title": "Gsu Plagiarism Checker - Budiren", "url": "https://eoei.budiren.pl/gsu-plagiarism-checker.html", "des": "Free plagiarism checker detects duplication from your research papers, blogs, assignments, and websites.", "is_url": true }, { "title": "Plagiarisma intihal - Ivanvial", "url": "https://ivanvial.cl/489824.html", "des": "Free plagiarism checker detects duplication from your research papers, blogs, assignments, and websites.", "is_url": true } ] } ] }