steampipe plugin install tomba-io/tomba

Table: tomba_linkedin

Get detailed information of email address from a Linkedin url.

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

Examples

Info about an Linkedin Finder

select
email,
first_name,
last_name
from
tomba_linkedin
where
url = 'https://www.linkedin.com/in/alex-maccaw-ab592978';

Find Enrichment Email Sources

select
p ->> 'uri' as uri,
p ->> 'extracted_on' as extracted_on,
p ->> 'still_on_page' as still_on_page
from
tomba_linkedin,
jsonb_array_elements(sources) as p
where
url = 'https://www.linkedin.com/in/mohamed-ben-rebia';

Schema for tomba_linkedin

NameTypeOperatorsDescription
_ctxjsonbSteampipe context in JSON form, e.g. connection_name.
companytextThe company of person (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 Linkedin. For example, `https://www.linkedin.com/in/alex-maccaw-ab592978`.
website_urltextThe Company domain.