# Technology

Discover technologies detected for a domain.

## Usage

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

## Example

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

## HTTP call

```bash
curl --request POST \
  --url 'http://127.0.0.1:3001/technology' \
  --header 'Content-Type: multipart/form-data' \
  --form domain=tomba.io
```

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