# Current user

This endpoint lets you get:

* Information about the current user &#x20;
* All organizations this user has access to (it requires `organization_r`)
* All jobs related to these organizations (it requires `jobs_r`)
* All stages (aka columns) related to these jobs

{% hint style="info" %}
&#x20;This endpoint requires `me_r` scope.
{% endhint %}

## current user

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

#### Query Parameters

| Name          | Type    | Description           |
| ------------- | ------- | --------------------- |
| organizations | boolean | Include organizations |
| jobs          | boolean | Include jobs          |
| stages        | boolean | Include jobs stages   |

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

```
{
  "avatar_url": "https://www.welcomekit.co/uploads/user/image/GXj/J/avatar.jpg",
  "display_name": "Foo Bar"
}

```

{% endtab %}
{% endtabs %}

Request example

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