# Verify your 1st email

There are two ways to verify an email with Reacher:

1. Using the Reacher No2Bounce Dashboard fully hosted option (quick & easy).
2. Using the Reacher No2Bounce API (more advanced and powerful).

### 1. Using the Reacher Dashboard

The easiest way to verify an email is to create a free account on <https://app.no2bounce.com/>.

Then simply input the email address you want to verify, and click on the "Verify" button:

<div data-full-width="false"><figure><img src="https://1918203520-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fo5vPPY5gLRq7nzcQhX1z%2Fuploads%2FRQaby4LZqV4cbm2kmCae%2FScreenshot%202026-03-18%206.42.55%20PM.png?alt=media&#x26;token=8c0acc68-3117-4d5b-9dbf-4c42e715293f" alt=""><figcaption></figcaption></figure></div>

You will get a response with an "`is_reachable`" field, which can take on of the four values: `safe`, `invalid`, `risky` or `unknown`. You can learn more about these 4 values in [Understanding "is\_reachable"](https://reacherdocs.no2bounce.com/getting-started/publish-your-docs).

### 2. Using the Reacher API

{% hint style="info" %}
If you do not know what an API is, you can skip to the next page about [Understanding "is\_reachable"](https://reacherdocs.no2bounce.com/getting-started/publish-your-docs).
{% endhint %}

While the Reacher Dashboard offers a simple way to start verifying emails, the true potential of Reacher lies in its API. Through the API, you can integrate Reacher with your own applications, link it to platforms like Mailchimp or HubSpot, or even sync it with a CRM system.

After creating an account on <https://app.no2bounce.com/>, you will receive an unique API token. You can then run the following `curl` command in your terminal:

{% code fullWidth="false" %}

```javascript
curl -X POST \
    https://api.reacher.email/v0/check_email \
    -H 'content-type: application/json' \
      -H 'authorization: <YOUR_API_TOKEN>' \
      -d '{"to_email": "support@no2bounce.com"}'
```

{% endcode %}

```javascript
// Output:
{
    "input":"support@no2bounce.com",
    "is_reachable":"safe",
    // --snip--
}
```
