> For the complete documentation index, see [llms.txt](https://docs.botsfordiscord.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.botsfordiscord.com/methods/users.md).

# Users

## User

<mark style="color:blue;">`GET`</mark> `https://discords.com/bots/api/user/:id`

#### Path Parameters

| Name | Type    | Description                                              |
| ---- | ------- | -------------------------------------------------------- |
| id   | integer | The ID of the user you are requesting information about. |

{% tabs %}
{% tab title="200 The server has located the users information and displayed it." %}

```
The content of this response varies.
```

{% endtab %}

{% tab title="404 The user you are requesting does not exist on the website." %}

```javascript
{ message: 'User not found.' }
```

{% endtab %}
{% endtabs %}

## Bots

<mark style="color:blue;">`GET`</mark> `https://discords.com/bots/api/user/:id/bots`

#### Path Parameters

| Name | Type    | Description                                              |
| ---- | ------- | -------------------------------------------------------- |
| id   | integer | The ID of the user you are requesting information about. |

{% tabs %}
{% tab title="200 The server has located information about the user's bots and displayed it." %}

```
The content of this response varies.
```

{% endtab %}

{% tab title="404 You may receive of the following 404 errors depending on your situation." %}

```javascript
//The user you are requesting does not exist on the website:
{ message: 'User not found.' }

//The user you are requesting does not own any bots on the website:
{ bots: 'User has no bots.' }
```

{% endtab %}
{% endtabs %}
