---
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
The publishable client key for authentication.
The project ID.
The password reset code to validate.
## Response
Whether the provided reset password 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-publishable-client-key: YOUR_PUBLISHABLE_CLIENT_KEY' \
-H 'x-stack-project-id: YOUR_PROJECT_ID' \
-d '{
"code": "RESET_CODE_HERE"
}'
```
```json 200 Response
{
"is_valid": true
}
```