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

# Profiles

## Get a user profile details

<mark style="color:blue;">`GET`</mark> `https://yourwebsite.com/api/users/?userID=<user_id>`

<mark style="color:blue;">`GET`</mark> `https://yourwebsite.com/api/users/?username=<username>`

{% tabs %}
{% tab title="200: OK " %}

```json
{
    "id": "2",
    "username": "leaderos",
    "email": "test@gmail.com",
    "credit": "150.00",
    "isVerified": "1",
    "authStatus": "0",
    "creationIP": "1.1.1.1",
    "creationDate": "2022-09-15 10:41:44",
    "linkedAccounts": [
        "discord": "111111111111" // Linked Discord User ID
    ]
}
```

{% endtab %}

{% tab title="404: Not Found User not found" %}

```json
{
    "status": false,
    "error": "USER_NOT_FOUND",
    "message": "User not found!"
}
```

{% endtab %}
{% endtabs %}
