> For the complete documentation index, see [llms.txt](https://baeminchan-project.gitbook.io/project/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://baeminchan-project.gitbook.io/project/undefined-4.md).

# 현재 사용자 조회

## Get User

<mark style="color:blue;">`GET`</mark> `https://api.elegantsiblings.xyz/members/user/`

This endpoint allows you to get free cakes.

#### Headers

| Name          | Type   | Description        |
| ------------- | ------ | ------------------ |
| Authorization | string | Token \<toekn key> |

{% tabs %}
{% tab title="200 ake successfully retrieved." %}

```javascript
{
    "user_pk": "1",
    "username": "lee",
    "first_name": "test",
    "last_name": "",
    "email": "",
    "img_profile": null
}
```

{% endtab %}

{% tab title="401 Could not find a cake matching this query." %}

```javascript
1. token이 이상한 경
{
    "detail": "토큰이 유효하지 않습니다."
}
2. toeken이 없는 경우
{
    "detail": "자격 인증데이터(authentication credentials)가 제공되지 않았습니다."
}
```

{% endtab %}
{% endtabs %}
