# Available Commands

Command list and global flags

![tomba help](/cli/default.svg)

### Available Commands

| Command name                               | Description                                                                               |
| ------------------------------------------ | ----------------------------------------------------------------------------------------- |
| [author](/cli/author)                      | Instantly discover the email addresses of article authors.                                |
| [bulk](/cli/bulk)                          | Process a CSV file in bulk; auto-map columns or use custom mapping.                      |
| [chat](/cli/ai-chat)                       | Open AI chat with Tomba tools; auto-initializes your project on first run.               |
| [completion](/cli/completion)              | Generate the autocompletion script for the specified shell                                |
| [count](/cli/count)                        | Returns total email addresses we have for one domain.                                     |
| [enrich](/cli/enrich)                      | Locate and include data in your emails.                                                   |
| [finder](/cli/finder)                      | Retrieves the most likely email address from a domain name, a first name and a last name. |
| [http](/cli/http)                          | Runs a HTTP server (reverse proxy).                                                       |
| [linkedin](/cli/linkedin)                  | Instantly discover email addresses from LinkedIn URLs.                                    |
| [login](/cli/authentication#login-usage)   | Sign in to your Tomba account.                                                            |
| [logout](/cli/authentication#logout-usage) | Delete your current API key and secret session.                                           |
| [logs](/cli/logs)                          | Check your last 1,000 requests you made during the last 3 months.                         |
| [phone-finder](/cli/phone-finder)          | Search for phone numbers given an email, domain, or LinkedIn URL.                         |
| [phone-validator](/cli/phone-validator)    | Validate phone numbers.                                                                   |
| [reveal](/cli/reveal)                      | Search for companies using natural language or structured filters.                        |
| [search](/cli/search)                      | Instantly locate email addresses from any company name or website.                        |
| [similar](/cli/similar)                    | Retrieve domains similar to a specific domain.                                            |
| [skill](/cli/skill)                        | ClawHub: manage and run reusable Tomba workflows.                                         |
| [sources](/cli/sources)                    | Find email address source somewhere on the web.                                           |
| [status](/cli/status)                      | Returns domain status if is webmail or disposable.                                        |
| [technology](/cli/technology)              | Discover technologies detected for a domain.                                              |
| [usage](/cli/usage)                        | Check your monthly requests.                                                              |
| [verify](/cli/verify)                      | Verify the deliverability of an email address.                                            |
| [whoami](/cli/whoami)                      | Print current account information.                                                        |
| help                                       | Help about any command                                                                    |
| version                                    | Print version number and build information.                                               |

### Global Flags

| shortopts | longopts   | Description                                                        |
| --------- | ---------- | ------------------------------------------------------------------ |
| `-h`      | `--help`   | help for tomba                                                     |
| `-j`      | `--json`   | output JSON format.                                                |
| `-k`      | `--key`    | Tomba API KEY.                                                     |
| `-o`      | `--output` | Save the results to file.                                          |
| `-p`      | `--port`   | Sets the port on which the HTTP server should bind. (default 3000) |
| `-s`      | `--secret` | Tomba API SECRET.                                                  |
| `-t`      | `--target` | Target specification. Can pass email, domain, URL, or LinkedIn URL. |
| `-y`      | `--yaml`   | output YAML format.                                                |

### Output Formats

By default, results are displayed as human-readable text. Use flags to switch formats:

```bash
# Default: human-readable text output
tomba search --target "tomba.io"

# JSON output
tomba search --target "tomba.io" --json

# YAML output
tomba search --target "tomba.io" --yaml

# Save to file
tomba search --target "tomba.io" -o results.json
```
