Retrieves the most likely email address from a domain name, along with a given first and last name.
Usage
tomba finder --target "<domain>" --fist "<first_name>" --last "<last_name>"
Example
tomba finder --target "tomba.io" --first "matt" --last "Mullenweg"
HTTP call
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
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"
}'
Last modified on