# Count

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

## Usage

```bash
tomba count --target "<domain>"
```

## Example

```bash
tomba count --target "tomba.io"
```

## Demo

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

## HTTP call

```bash
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"
}'
```
