# Supported AI Text Detection 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-ai-text-detection-file-types
```

</RequestExample>

<ResponseExample>

```json 200 OK
{
  "supportedAiFileTypes": [
    "pdf", "docx", "doc", "txt", "rtf", "xml",
    "pptx", "ppt", "odt", "chm", "epub", "odp",
    "ppsx", "pages", "xlsx", "xls", "csv",
    "LaTeX", "html", "htm"
  ]
}
```

</ResponseExample>

Get a list of the Supported AI Text Detection File Types.

## Response

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

    ```json
    {
      "supportedAiFileTypes": [
        "pdf", "docx", "doc", "txt", "rtf", "xml",
        "pptx", "ppt", "odt", "chm", "epub", "odp",
        "ppsx", "pages", "xlsx", "xls", "csv",
        "LaTeX", "html", "htm"
      ]
    }
    ```
  </Tab>
</Tabs>
