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

Count

Returns the total number of email addresses available for a specified domain.

Usage

tomba count --target "<domain>"
bash

Example

tomba count --target "tomba.io"
bash

HTTP call

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