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

# User Endpoints

> Retrieve the authenticated user's profile.

All endpoints in this section require authentication.

***

## GET /v1/user

Get the authenticated user's basic profile.

**Response (200):**

```json theme={null}
{
  "success": true,
  "data": {
    "id": 1,
    "name": "Jane Smith",
    "email": "jane@example.com",
    "status": 1,
    "email_verified_at": "2026-01-01T10:00:00Z",
    "created_at": "2026-01-01T09:00:00Z"
  }
}
```

User status values:

| Value | Meaning |
| ----- | ------- |
| `1`   | Active  |
| `2`   | Blocked |
| `3`   | Support |
| `4`   | Admin   |
