> ## 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.

# Update Profile

> Actualizar el perfil del usuario autenticado.

<ParamField body="display_name" type="string">
  Nuevo nombre para mostrar. Máximo 100 caracteres.
</ParamField>

<ParamField body="avatar_url" type="string">
  URL del avatar. Máximo 500 caracteres.
</ParamField>

<RequestExample>
  ```bash theme={null}
  curl -X PUT http://localhost:8000/api/v1/auth/me \
    -H "Authorization: Bearer {token}" \
    -H "Content-Type: application/json" \
    -d '{"display_name": "Carlos Developer"}'
  ```
</RequestExample>

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