# Supported Plagiarism File Types

> File formats accepted by the API

<RequestExample>

```bash title="cURL" icon="terminal"
curl --request GET \
  --url https://api.copyleaks.com/v3/miscellaneous/supported-plagiarism-file-types
```

```python title="Python" icon="python"
from copyleaks.copyleaks import Copyleaks

# Public endpoint  no authentication required.
file_types = Copyleaks.supported_file_types()
print(file_types)
```

</RequestExample>

<ResponseExample>

```json 200 OK
{
  "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"]
}
```

</ResponseExample>

Get a list of the supported plagiarism file types.

## Response

<Tabs>
  <Tab title="200">
    <Check>**200 OK** - The command was executed.</Check>

    ```json
    {
      "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"]
    }
    ```
  </Tab>
</Tabs>
