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

# Get Profile

> Obtener el perfil del usuario autenticado.

<RequestExample>
  ```bash theme={null}
  curl http://localhost:8000/api/v1/auth/me \
    -H "Authorization: Bearer {token}"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "id": "user-1",
    "email": "dev@acme-corp.com",
    "display_name": "Carlos Dev",
    "avatar_url": null,
    "plan": "free",
    "created_at": "2026-04-04T07:15:29"
  }
  ```
</ResponseExample>
