# @verifly/cli

Command line tools for Verifly email verification and list hygiene.

## Install

```bash
npm install -g @verifly/cli
```

## Configure

```bash
export VERIFLY_API_KEY="vf_your_key"
```

On Windows PowerShell:

```powershell
$env:VERIFLY_API_KEY="vf_your_key"
```

## Commands

Verify one address:

```bash
verifly verify person@example.com
```

Verify a file with one email per line:

```bash
verifly batch emails.txt --out results.json
```

Clean a list without SMTP verification:

```bash
verifly clean emails.txt --out clean.json
```

Extract emails from raw text:

```bash
verifly extract page.txt
```

Check credits:

```bash
verifly credits
```

Check usage:

```bash
verifly usage
```

## Publish

```bash
npm publish --access public
```
