# Finder

Retrieves the most likely email address from a domain name, along with a given first and last name.

## Usage

```bash
tomba finder --target "<domain>" --fist "<first_name>" --last "<last_name>"
```

## Example

```bash
tomba finder --target "tomba.io" --first "matt" --last "Mullenweg"
tomba finder --target "tomba.io" --fist "mohamed" --last "ben rebia" --enrich-mobile
```

## Demo

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

## HTTP call

```bash
curl --request POST \
  --url 'http://127.0.0.1:3001/finder' \
  --header 'Content-Type: multipart/form-data' \
  --form first_name=Matt \
  --form last_name=Mullenweg \
  --form domain=tomba.io
```

```bash
curl --request POST \
  --url 'http://127.0.0.1:3001/finder' \
  --header 'Content-Type: application/json' \
  --data '{
    "first_name": "Matt",
    "last_name": "Mullenweg",
    "domain": "tomba.io"
}'
```
