--- title: "Check Reset Password Code" description: "Check if a reset password code is valid without using it." api: "POST /api/v1/auth/password/reset/check-code" --- ## Request ### Headers The unique identifier of the project. The publishable client key. ### Body A 45-character reset code to validate. ## Response Whether the provided reset code is valid. ```bash cURL curl -X POST "https://api.stack-auth.com/api/v1/auth/password/reset/check-code" \ -H "Content-Type: application/json" \ -H "X-Stack-Project-Id: " \ -H "X-Stack-Publishable-Client-Key: " \ -d '{ "code": "u3h6gn4w24pqc8ya679inrhjwh1rybth6a7thurqhnpf2" }' ``` ```javascript JavaScript const response = await fetch("https://api.stack-auth.com/api/v1/auth/password/reset/check-code", { method: "POST", headers: { "Content-Type": "application/json", "X-Stack-Project-Id": "", "X-Stack-Publishable-Client-Key": "" }, body: JSON.stringify({ code: "u3h6gn4w24pqc8ya679inrhjwh1rybth6a7thurqhnpf2" }) }); const data = await response.json(); ```