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

# Resend Verification Email

> Request a new email verification link.

# Resend Verification Email

Request a new verification email for users who didn't receive the original or whose verification link has expired.

## Authentication

No authentication required.

<ParamField body="email" type="string" required>User's registered email address</ParamField>

## Example Request

```bash theme={null}
curl -X POST https://api.app.shinzo.ai/auth/resend_verification \
  -H "Content-Type: application/json" \
  -d '{
    "email": "user@example.com"
  }'
```

## Response

```json theme={null}
{
  "message": "Verification email sent. Please check your inbox."
}
```

## Status Codes

| Code  | Description                                        |
| ----- | -------------------------------------------------- |
| `200` | Verification email sent (or user already verified) |
| `400` | Invalid request (missing email)                    |
| `404` | User not found                                     |

## Notes

* For security reasons, this endpoint returns success even if the email is already verified
* There may be rate limiting on verification email requests to prevent abuse
* Check spam/junk folders if the email doesn't arrive in the inbox
