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

# Profile

### Get Level Profile

```http
GET guilds/{guildID}/users/{userID}/level-profile
```

Get the level profile of a member.

#### Response Fields

<table data-full-width="false"><thead><tr><th width="143">Field</th><th width="100" align="center">Type</th><th>Description</th></tr></thead><tbody><tr><td>level</td><td align="center"><code>number</code></td><td>The level.</td></tr><tr><td>xp</td><td align="center"><code>number</code></td><td>The amount of xp of the current level.</td></tr><tr><td>neededXp</td><td align="center"><code>number</code></td><td>The amount of xp needed to level up.</td></tr><tr><td>totalXp</td><td align="center"><code>number</code></td><td>The total amount of xp.</td></tr><tr><td>messages</td><td align="center"><code>number</code></td><td>The number of messages.</td></tr><tr><td>voiceMinutes</td><td align="center"><code>number</code></td><td>The number of minutes in a voice channel.</td></tr><tr><td>reactions</td><td align="center"><code>number</code></td><td>The number of reactions added.</td></tr></tbody></table>

```json
{
    "level": 15,
    "xp": 974,
    "neededXp": 726,
    "totalXp": 11074,
    "messages": 1983,
    "voiceMinutes": 179,
    "reactions": 32
}
```
