:::caution[Coming soon]
The official Syvel Zapier integration is not yet available. This page describes the planned action and typical use cases.
:::

## What the integration will do

The Syvel Zapier app exposes a single action:

**Check Email**
- Trigger: any Zapier trigger that provides an email address
- Action: `GET /v1/check/{email}` → Syvel API
- Output fields available in subsequent Zap steps:
  - `is_risky` — boolean
  - `risk_score` — integer (0–100)
  - `reason` — `safe` · `disposable` · `undeliverable` · `role_account`
  - `did_you_mean` — string or empty

## Typical use case

**Filter disposable emails from a CRM:**

```
Trigger:  HubSpot — New contact created
Action 1: Syvel — Check Email
            Email: {{contact.email}}

Filter:   Continue only if is_risky is False

Action 2: (your next step — send welcome email, add to sequence, etc.)
```

**Alternative — tag instead of block:**

```
Trigger:  HubSpot — New contact created
Action 1: Syvel — Check Email
            Email: {{contact.email}}

Action 2: HubSpot — Update contact
            If is_risky is True → add tag "disposable-email"
            If is_risky is True → set property "skip_email_sequence" to true
```

## API key setup

When the integration is available, you will connect your Syvel account in Zapier by providing your API key (found in your [dashboard](https://dashboard.syvel.io) under **API Keys**).

## Resources

- [API reference — Domain check](/docs/api/check)
- [Authentication](/docs/guides/authentication)
- [Rate limits](/docs/guides/rate-limits)