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
2
votes
1 answer

Why am I getting a "conflict" HTTP 409 response from CopyLeaks on export API calls?

I'm getting an HTTP 409 "Conflict" response while handling CopyLeaks' "Completion" webhook when sending my export request. I'm getting it every time I submit a test scan today, but I wasn't getting it a couple days ago when I last tested the code.…
thespacecamel
  • 912
  • 11
  • 14
1
vote
1 answer

400 Bad request, PUT create Url, Api Copyleaks

when trying to create a new scan through a URL it is giving 400 bad request error, accusing that the URL field is mandatory. But I send all the data when I run the postman send correctly. Print return request:"{u'url': [u'The url field is…
1
vote
1 answer

Exporting Copyleaks API scan artifacts

I've used the submit file method to create a new scan on Copyleaks API platform. Using this code: curl -XPUT -H 'Authorization: Bearer XXX' -H "Content-type: application/json" -d '{ "base64": "SGVsbG8gd29ybGQh", "filename": "file.txt", …
No1Lives4Ever
  • 6,430
  • 19
  • 77
  • 140
0
votes
0 answers

Unauthorized 401 on calling scan URL CopyLeaks API

I am trying to call an api of copyleaks using Postman https://api.copyleaks.com/v3/scans/submit/url/my-special-id but I am getting this error { "type": "https://tools.ietf.org/html/rfc7235#section-3.1", "title": "Unauthorized", "status":…
0
votes
1 answer

API endpoint to submit free text to the copyleaks plagiarism API

I went through the API docs on this page: https://api.copyleaks.com/documentation/v3/scans one can submit 3 types of data - url, file and ocr data to the plagiarism checker api. I would like to know how to submit free text to the API. I am able to…
suprita shankar
  • 1,554
  • 2
  • 16
  • 47
0
votes
0 answers

Trouble getting PDF report from webhook endpoint in Laravel using $request->file()

I'm subscribed to get back the pdf report via a web hook endpoint. The endpoint is being hit but now I having issues in trying to get the file from the request. I'm using Laravel and I've tried using $request->file() but to no avail.
0
votes
1 answer

Why does the sample code result in a 401 response?

Almost an identical match against the documentation example at the bottom of this page: https://api.copyleaks.com/documentation/v3/scans/submit/url#sandbox-mode import requests import json headers = { 'Content-type': 'application/json', …
DGaff
  • 471
  • 1
  • 3
  • 8
0
votes
1 answer

Integrating Copyleaks SDK with Angular

I am trying to integrate the Copyleaks SDK with Angular to be able to check for plagiarism on two text area fields in an HTML form. On the HTML form, I am trying to integrate two buttons, which checks for plagiarism on one text area field, and the…
Hans P
  • 1
  • 1
0
votes
0 answers

SSL Error when using Copyleaks API to authenticate/obtain authentication token

In python, I am trying to use the copyleaks API to authenticate/obtain my authentication token: from copyleaks.copyleaks import Copyleaks from copyleaks.exceptions.command_error import CommandError # Register on https://api.copyleaks.com and grab…
Hans P
  • 1
  • 1
0
votes
1 answer

Returned properties for AI detected text

Please provide an example of the returned object for the AI generated text. I'm providing some text to scan using the /v3/scans/submit/file/{scanId} endpoint with the properties.aiGeneratedText.detect flag enabled. I was expecting to receive an…
learntheropes
  • 444
  • 3
  • 11
0
votes
1 answer

Incoming IP addresses for webhooks?

What IP Address range do your webhooks come from? We need to white list them to receive your Copyleaks results to our web server. Thank You,
0
votes
2 answers

Detecting AiGeneratedText with CopyLeaks API doesn't return AI detection results in the final report

I have integrated with CoopyLeaks, and liked the feature to check if text was written by AI. However, after following the documentation, the results don't return any information regarding this aspect of the scan. Neither the generated PDF or the…
Huthaifa Muayyad
  • 11,321
  • 3
  • 17
  • 49
0
votes
0 answers

Copyleaks export query with scan id and results internet id?

I am using copyleaks in the Laravel your php sdk, and able to successfully submit & scans method. If we have completed our scan successfully and getting response in our web hook, with scan id and multiple result internet id. So, do we need to export…
Rahul
  • 1
  • 1
0
votes
0 answers

copyleaks sent pdfReport to endpoint as binary on request.body, not as file

I have django view that gets request and I try to send pdf result of copyleak scan. I get file as request.body and request.FILES is empty. I have checked copyleaks docs to see if I could pass extra argument as we should…
Sahil
  • 11
  • 3
0
votes
1 answer

Can I clone list of repositories from GitHub and run plagiarism check

Is it possible to clone a list of repos from GitHub and run a plagiarism check on them? Example: A file with the list of GitHub repo (let's say 10) - this file can be called "big" A file with the list of GitHub repo (let's say 2) - this file can be…
bellom
  • 3
  • 1
1
2