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

# Get Current User

> Retrieve the authenticated user's profile information.

# Get Current User

Retrieve profile information for the currently authenticated user.

## Authentication

Requires JWT token authentication.

```bash theme={null}
Authorization: Bearer <jwt_token>
```

## Example Request

```bash theme={null}
curl -X GET https://api.app.shinzo.ai/auth/fetch_user \
  -H "Authorization: Bearer eyJhbGciOiJIUzI1NiIs..."
```

## Response

```json theme={null}
{
  "uuid": "usr_abc123def456",
  "email": "user@example.com",
  "email_verified": true,
  "created_at": "2025-01-15T10:30:00Z",
  "updated_at": "2025-01-20T14:45:00Z"
}
```

## Response Fields

| Field            | Type    | Description                           |
| ---------------- | ------- | ------------------------------------- |
| `uuid`           | string  | Unique user identifier                |
| `email`          | string  | User's email address                  |
| `email_verified` | boolean | Whether the email has been verified   |
| `created_at`     | string  | Account creation timestamp (ISO 8601) |
| `updated_at`     | string  | Last update timestamp (ISO 8601)      |

## Status Codes

| Code  | Description              |
| ----- | ------------------------ |
| `200` | Success                  |
| `401` | Invalid or missing token |
