# Cross-Language Plagiarism

> Get the source and target languages supported for cross-language plagiarism detection with the Copyleaks API.

<RequestExample>

```bash title="cURL" icon="terminal"
curl --request GET \
  --url https://api.copyleaks.com/v3/miscellaneous/allowed-cross-languages
```

</RequestExample>

<ResponseExample>

```json 200 OK
{
  "documentLanguages": ["da", "nl", "en", "...", "es"],
  "resultLanguages": ["sq", "bg", "my", "ca", "hr", "cs", "da", "...", "vi"]
}
```

</ResponseExample>

Cross-language plagiarism detection identifies content that has been translated from one language to another, helping catch plagiarism attempts where text is copied and translated to avoid detection.

This document provides information about the languages supported by Copyleaks for cross-language scans. The language codes are provided in the `ISO-639-1` standard.

## Response

<Tabs>
  <Tab title="200">
    <Check>**200 OK** - The supported language codes in `ISO-639-1` standard.</Check>

    ```json
    {
      "documentLanguages": [
        "da",
        "nl",
        "en",
        "...",
        "es"
      ],
      "resultLanguages": [
        "sq",
        "bg",
        "my",
        "ca",
        "hr",
        "cs",
        "da",
        "...",
        "vi"
      ]
    }
    ```
  </Tab>
</Tabs>

## Supported Languages for Cross-Language Scans

The following sections list the supported source and result languages for cross-language scans. 

These language codes are provided in the `ISO-639-1` standard.
<Tip>
  We keep updating the list with new languages so we recommend [loading the list in runtime](/reference/actions/miscellaneous/supported-cross-languages) rather than copying it to your code.
</Tip>

### Allowed Source Languages
The following languages can be used as the source language in a cross-language scan:

| Code | Language   | Code | Language   |
|------|-----------|------|-----------|
| da   | Danish    | fr   | French    |
| nl   | Dutch     | de   | German    |
| en   | English   | it   | Italian   |
| pt   | Portuguese| ru   | Russian   |
| es   | Spanish   |      |           |

### Allowed Result Languages
The following languages can be used as the result language in a cross-language scan:

| Code | Language    | Code | Language    |
|------|------------|------|------------|
| sq   | Albanian   | gl   | Galician   |
| bg   | Bulgarian  | ka   | Georgian   |
| ca   | Catalan    | de   | German     |
| hr   | Croatian   | el   | Greek      |
| cs   | Czech      | hi   | Hindi      |
| da   | Danish     | hu   | Hungarian  |
| nl   | Dutch      | id   | Indonesian |
| en   | English    | it   | Italian    |
| fi   | Finnish    | lv   | Latvian    |
| fr   | French     | lt   | Lithuanian |
| mk   | Macedonian | my   | Burmese    |
| fa   | Persian    | pl   | Polish     |
| pt   | Portuguese | ro   | Romanian   |
| ru   | Russian    | sr   | Serbian    |
| sk   | Slovak     | sl   | Slovenian  |
| es   | Spanish    | sv   | Swedish    |
| tr   | Turkish    | uk   | Ukrainian  |
| ur   | Urdu       | vi   | Vietnamese |
