# Sectors

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

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

#### Query Parameters

| Name      | Type    | Description                |
| --------- | ------- | -------------------------- |
| per\_page | integer | Page offset                |
| page      | integer | Number of sectors per page |

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

```
[
    {
        "id": "2",
        "fullname": {
            "es": "Tecnología > Big data",
            "en": "Tech > Big data",
            "fr": "Tech > Big data"
        },
        "parent": {
            "es": "Tecnología",
            "en": "Tech",
            "fr": "Tech",
            "_id": "1"
        },
        "names": {
            "es": "Big data",
            "en": "Big data",
            "fr": "Big data"
        },
        "reference": "big_data"
    },
    {
        "id": "3",
        "fullname": {
            "es": "Tecnología > Software",
            "en": "Tech > Software",
            "fr": "Tech > Logiciels"
        },
        "parent": {
            "es": "Tecnología",
            "en": "Tech",
            "fr": "Tech",
            "_id": "1"
        },
        "names": {
            "es": "Software",
            "en": "Software",
            "fr": "Logiciels"
        },
        "reference": "software"
    }
    ...
]
```

{% endtab %}
{% endtabs %}

Request example

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