# Email Validation

## Validate Email

<mark style="color:blue;">`GET`</mark> `https://api.flintbase.com/identity/email/validate`

This endpoint allows you to validate an email address.

#### Query Parameters

| Name  | Type   | Description                      |
| ----- | ------ | -------------------------------- |
| email | string | An email address for validation. |

{% tabs %}
{% tab title="200 Request to validate an email address was successful." %}

```
{
   "success":true,
   "score":0.91,
   "verdict":"valid",
   "attributes":{
      "username":"hello",
      "domain":"flintbase.com",
      "cleaned":"hello@flintbase.com",
      "suggestion":null
   },
   "checks":{
      "valid_format":true,
      "mx_record_found":true,
      "role_based":true,
      "disposable":false,
      "free":false
   }
}
```

{% endtab %}
{% endtabs %}
