curl --request GET \
--url https://api.copyleaks.com/v3/miscellaneous/supported-plagiarism-file-types
from copyleaks.copyleaks import Copyleaks
# Public endpoint no authentication required.
file_types = Copyleaks.supported_file_types()
print(file_types)
{
"textual": [
"pdf", "docx", "doc", "txt", "rtf", "xml",
"pptx", "ppt", "odt", "chm", "epub", "odp",
"ppsx", "pages", "xlsx", "xls", "csv", "LaTeX"
],
"ocr": ["gif", "png", "bmp", "jpg", "jpeg"]
}
Miscellaneous
Supported Plagiarism File Types
File formats accepted by the API
GET
/
v3
/
miscellaneous
/
supported-plagiarism-file-types
curl --request GET \
--url https://api.copyleaks.com/v3/miscellaneous/supported-plagiarism-file-types
from copyleaks.copyleaks import Copyleaks
# Public endpoint no authentication required.
file_types = Copyleaks.supported_file_types()
print(file_types)
{
"textual": [
"pdf", "docx", "doc", "txt", "rtf", "xml",
"pptx", "ppt", "odt", "chm", "epub", "odp",
"ppsx", "pages", "xlsx", "xls", "csv", "LaTeX"
],
"ocr": ["gif", "png", "bmp", "jpg", "jpeg"]
}
curl --request GET \
--url https://api.copyleaks.com/v3/miscellaneous/supported-plagiarism-file-types
from copyleaks.copyleaks import Copyleaks
# Public endpoint no authentication required.
file_types = Copyleaks.supported_file_types()
print(file_types)
{
"textual": [
"pdf", "docx", "doc", "txt", "rtf", "xml",
"pptx", "ppt", "odt", "chm", "epub", "odp",
"ppsx", "pages", "xlsx", "xls", "csv", "LaTeX"
],
"ocr": ["gif", "png", "bmp", "jpg", "jpeg"]
}
Response
- 200
200 OK - The command was executed.
{
"textual": [
"pdf", "docx", "doc", "txt", "rtf", "xml",
"pptx", "ppt", "odt", "chm", "epub", "odp",
"ppsx", "pages", "xlsx", "xls", "csv", "LaTeX"
],
"ocr": ["gif", "png", "bmp", "jpg", "jpeg"]
}
⌘I

