> For the complete documentation index, see [llms.txt](https://developers.welcomekit.co/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://developers.welcomekit.co/jobs-api/jobs/get-jobs-dependencies/languages.md).

# Languages

{% hint style="info" %}
This endpoint just requires a valid token.
{% endhint %}

## language list

<mark style="color:blue;">`GET`</mark> `https://www.welcomekit.co/api/v1/external/languages`

In order to create a job, you will need a language. This endpoint lets you access to the list of all active languages.

#### Query Parameters

| Name | Type    | Description |
| ---- | ------- | ----------- |
| page | integer | Page offset |

{% tabs %}
{% tab title="200 Success" %}

```
[
    {
        "name": "English",
        "reference": "en"
    },
    {
        "name": "French",
        "reference": "fr"
    },
    {
        "name": "Spanish; Castilian",
        "reference": "es"
    }
]
```

{% endtab %}
{% endtabs %}

Request example

```
curl -X GET "https://www.welcomekit.co/api/v1/external/languages" \
    -H "Content-Type: application/json" \
    -H "Authorization: bearer WK_API_KEY"
```
