Questions tagged [copyleaks-api]

Copyleaks is a RESTful service for plagiarism checking. The Copyleaks solution leverages AI & Machine Learning to boost your plagiarism detection abilities. ONLY PROGRAMMING RELATED QUESTIONS ARE ON-TOPIC. Questions which are not specifically programming related are OFF-TOPIC for Stack Overflow.

Introduction

Copyleaks uses artificial intelligence technology to provide the leading plagiarism detection solution for both educational organizations and businesses. Copyleaks is able to detect similar text in multiple layers including identical, similar, and paraphrased text passages.

A comprehensive report of results from around the internet and internal databases will be generated for each unique plagiarism scan. Copyleaks is highly customizable and can be integrated as an additional layer to your platform to search and analyze plagiarized text.

What questions should have this tag?

ONLY programming related questions are on-topic.

Any question related to the Copyleaks API. Except if your question is about an internal error that you received from the Copyleaks servers, you have to contact Copyleaks support directly. Make sure to mention the ticket number.

What information do you have to include?

  • A short explanation of which goals you are trying to achieve.
  • Information about the REST request call that you are trying to execute. This information should include the HTTP method, endpoints, headers and body (if exists). Don't forget to remove secret information before publishing.
  • If you received an unexpected response from the Copyleaks service, describe the response and include code (status code and body if exists).
  • If your question is about a code implementation using specific programming language, try to extract the actual REST call that was produced by your code. This will help us to solve the problem.

⚠️Information not to include

  • Sensitive information. Including API keys and server names.
  • Personal information. Including the company name or developer name.

Learn more

24 questions
0
votes
1 answer

How to get percentage matching in copyleakes Export API using python

I'm working on copyleaks api using python. I was able to successfully complete Account Methods and Scans Methods. then when I tried to export the report in that copyleaks export api I am getting only response code and getting any details of that…
0
votes
1 answer

How do I call the Delete API call in CopyLeaks?

I have been trying to delete certain scans I have made using the API. Now, when I try to do that using documentation provided here : https://api.copyleaks.com/documentation/v3/education/delete, I keep getting the following error which is :…
Zain Sarwar
  • 1,226
  • 8
  • 10
0
votes
0 answers

Copyleak Webhook url is not being called

I'm integrating copyleaks API in my PHP project. Using this code for scanning the free text.. $webookUrl = 'https://example.com/prodparallel/copyleakCallback.php'; Here, I'm replacing the site name with example.com [I'm using my dev server URL].. …
0
votes
1 answer

How can I pass variable to check plagiarism in Copyleaks API using PHP.? Here is my Code. I have just implement API in php code yet

Following are my code that return expiry time of token and some other login info. include_once('vendor/copyleaks/php-plagiarism-checker/autoload.php'); use Copyleaks\Copyleaks; $copyleaks = new Copyleaks(); $loginResult =…
0
votes
0 answers

500 Internal Server Error on https://copyleaks.com/api/v3/education/submit/ocr/my-custom-id

I wanted to scan a free text only(images not included) from copyleaks and they offer me this documentation https://api.copyleaks.com/documentation/v3/education/submit/ocr but I'm getting the 500 Internal Server Error using this Request body(raw json…
0
votes
1 answer

includeHtml doesn't do its job

So I'm using https://www.npmjs.com/package/plagiarism-checker/v/3.0.1 to interact with Copyleaks' API and it's working great, except for the fact that setting CopyleaksFileSubmissionModel.includeHtml to true doesn't make it send the HTML on the…
0
votes
0 answers

How to use Copyleaks API in Tkinter?

I would to know how to use Copyleaks API in Tkinter as I am developing plagiarism checker using Tkinter.
0
votes
1 answer

Do sandbox CopyLeaks result requests send headers?

When CopyLeaks sends the completed webhook to my server, I then send an export request like the following (note that I'm specifying "headers") { "completionWebhook": "***REDACTED***/copyleaks/webhook/exported/56", "crawledVersion": { …
thespacecamel
  • 912
  • 11
  • 14
-1
votes
1 answer

Copyleaks SDK Java Examples

I have gone through the API docs for CopyLeaks and I understand the API urls listed. However, since the SDK libraries are listed on the site, i think it may make the process of integration more easier. However can you help me find examples of Java…
1
2