> ## Documentation Index
> Fetch the complete documentation index at: https://docs.animo.co/llms.txt
> Use this file to discover all available pages before exploring further.

# User

# User

## Overview

Returns the profile of the authenticated user associated with the bearer token.

## Endpoints

### Get authenticated user

* **Method:** `GET`
* **Path:** `/api/v1/user`
* **Scope:** `user:read`
* **Subscription:** None (global endpoint)

#### Path parameters

None.

#### Query parameters

None.

#### Response `200`

```json theme={null}
{
  "data": {
    "id": "u3Ab1",
    "avatar": "https://example.com/avatar.jpg",
    "first_name": "Alex",
    "job_title": "Product Manager",
    "last_name": "Rivera",
    "linkedin_url": "https://linkedin.com/in/alex",
    "email": "alex@example.com",
    "created_at": "2025-01-15T10:30:00.000000+00:00"
  }
}
```

#### Response fields

| Field          | Type         | Description                |
| -------------- | ------------ | -------------------------- |
| `id`           | string       | User sqid                  |
| `avatar`       | string\|null | Avatar URL                 |
| `first_name`   | string       | First name                 |
| `job_title`    | string\|null | Job title                  |
| `last_name`    | string       | Last name                  |
| `linkedin_url` | string\|null | LinkedIn profile URL       |
| `email`        | string       | Email address              |
| `created_at`   | string       | Account creation timestamp |

#### Errors

| Status | When                            |
| ------ | ------------------------------- |
| `401`  | Missing or invalid token        |
| `403`  | Token missing `user:read` scope |

## Related

* [Authentication](../authentication.md)
* [Conventions](../conventions.md)
* [Companies](companies.md)
