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

# Verify Email

> Verify email address with token

Verify email address using the verification token sent to the user's email.

<ParamField path="token" type="string" required>
  Email verification token
</ParamField>

<ResponseField name="success" type="boolean">
  Indicates if the request was successful
</ResponseField>

<ResponseField name="data" type="object">
  Verification result data
</ResponseField>

## Example Request

```bash theme={null}
curl -X POST https://api.transaction.gg/auth/verify-email \
  -H "Content-Type: application/json" \
  -d '{
    "token": "verification_token"
  }'
```

## Example Response

```json theme={null}
{
  "success": true,
  "error": null,
  "data": {
    "verified": true
  }
}
```

## Error Responses

<ResponseExample name="Invalid Token">
  ```json theme={null}
  {
    "success": false,
    "error": {
      "status": 400,
      "code": "VALIDATION_INVALID",
      "message": "Invalid verification token"
    },
    "data": null
  }
  ```
</ResponseExample>
