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

# 비밀번호 재설정

> 토큰을 사용해 비밀번호를 재설정하는 엔드포인트입니다.

## POST /auth/reset-password

메일로 전송된 토큰으로 계정 비밀번호를 새 값으로 변경합니다.

### 요청 본문

<ParamField body="token" type="string" required>
  메일에 포함된 비밀번호 재설정 토큰입니다.
</ParamField>

<ParamField body="newPassword" type="string" required>
  새 비밀번호입니다. 최소 8자 이상이어야 합니다.
</ParamField>

### 응답

<ResponseField name="success" type="boolean">
  재설정 성공 여부입니다.
</ResponseField>

<ResponseField name="message" type="string">
  확인 메시지입니다.
</ResponseField>

<RequestExample>
  ```bash cURL theme={null}
  curl -X POST https://api.llmgenerator.com/api/v1/auth/reset-password \
    -H "Content-Type: application/json" \
    -d '{
          "token": "PASSWORD_RESET_TOKEN",
          "newPassword": "newSecurePassword123"
        }'
  ```
</RequestExample>

<ResponseExample>
  ```json theme={null}
  {
    "success": true,
    "message": "Password has been reset successfully."
  }
  ```
</ResponseExample>
