Welcome to Tomba Docs! Create a free Tomba account and gain instant access to 400+ million contacts!
Tomba CLI

Enrich

Locate and include additional data in your emails.

Usage

tomba enrich --target "<email>"
bash

Example

tomba enrich --target "b.mohamed@tomba.io"
bash

Slack Command

/enrich b.mohamed@tomba.io
bash

HTTP call

curl --request POST \
  --url 'http://127.0.0.1:3001/enrich' \
  --header 'Content-Type: multipart/form-data' \
  --form email=b.mohamed@tomba.io
bash
curl --request POST \
  --url 'http://127.0.0.1:3001/enrich' \
  --header 'Content-Type: application/json' \
  --data '{
	"email": "b.mohamed@tomba.io"
}'
bash