# Verify

## Usage

```bash
tomba verify --target "<email>"
```

## Example

```bash
tomba verify --target "b.mohamed@tomba.io"
```

## Demo

![tomba verify](/cli/verify.svg)

## Slack Command

```bash
/checker m@wordpress.org
```

## HTTP call

```bash
curl --request POST \
  --url 'http://127.0.0.1:3001/verify' \
  --header 'Content-Type: multipart/form-data' \
  --form email=m@wordpress.org
```

```bash
curl --request POST \
  --url 'http://127.0.0.1:3001/verify' \
  --header 'Content-Type: application/json' \
  --data '{
	"email": "m@wordpress.org"
}'
```
