> For the complete documentation index, see [llms.txt](https://fastbnb.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://fastbnb.gitbook.io/project/undefined-2.md).

# 사용자 정보 가져오기

## Get User Info

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

returns user info

#### Path Parameters

| Name       | Type    | Description        |
| ---------- | ------- | ------------------ |
| Auth Token | integer | Bearer Token 보내주십쇼 |

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

```javascript
{
    "username": "admin",
    "email": "",
    "date_joined": "2018-11-25T22:56:44.077313+09:00",
    "img_profile": null,
    "id": 1,
    "last_login": "2018-11-25T22:57:08.312834+09:00"
}
```

{% endtab %}
{% endtabs %}
