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

Author

Instantly discover the email addresses of article authors.

Usage

tomba author --target "<URL>"
bash

Example

tomba author --target "https://clearbit.com/blog/company-name-to-domain-api"
bash

Slack Command

/author https://clearbit.com/blog/company-name-to-domain-api
bash

HTTP call

curl --request POST \
  --url 'http://127.0.0.1:3001/author' \
  --header 'Content-Type: multipart/form-data' \
  --form url=https://clearbit.com/blog/company-name-to-domain-api
bash
curl --request POST \
  --url 'http://127.0.0.1:3001/author' \
  --header 'Content-Type: application/json' \
  --data '{
	"url": "https://clearbit.com/blog/company-name-to-domain-api"
}'
bash