steampipe plugin install tomba-io/tomba

Table: tomba_author

Get detailed information of email address from a blog post url.

The tomba_author table requires the url field to be specified in all queries, defining the URL to lookup.

Examples

Info about an Author Finder

select
email,
first_name,
last_name
from
tomba_author
where
url = 'https://clearbit.com/blog/company-name-to-domain-api';

Find the email sources of the Author Finder

select
p ->> 'uri' as uri,
p ->> 'extracted_on' as extracted_on,
p ->> 'still_on_page' as still_on_page
from
tomba_author,
jsonb_array_elements(sources) as p
where
url = 'https://clearbit.com/blog/company-name-to-domain-api';

Get the social media handles of the author

select
email,
first_name,
last_name,
twitter,
linkedin
from
tomba_author
where
url = 'https://clearbit.com/blog/company-name-to-domain-api';

Schema for tomba_author

NameTypeOperatorsDescription
_ctxjsonbSteampipe context in JSON form, e.g. connection_name.
companytextThe Name of company (if found).
countrytextThe Two letter country code based on location.
emailtextThe email address.
first_nametextThe First name of person.
gendertextThe person gender.
last_nametextThe Last name of person.
linkedintextThe LinkedIn handle for the person (if found).
sourcesjsonbThe given email address somewhere on the web.
twittertextThe Twitter handle for the person (if found).
urltext=The URL of the article. For example, `https://clearbit.com/blog/company-name-to-domain-api`.
website_urltextThe Domain of company’s website.