Skip to content

Fetch full contact domains

social3rd party APIintegration

Enrich a dataset containing links (URLs) to companies' online presence using the FullContact service.

Will produce information about each company's social media accounts (including twitter, facebook, linkedin, etc.) and other general information (industries it belongs to, location of its headquarter etc.). See below for the full list of enrichment columns added by the step.

API integration

To use this step your team needs to have the Full Contact integration configured in Graphext. The corresponding credentials are required to connect to a third-party API. You can configure API integrations following the INTEGRATIONS or ADD INTEGRATION link in the top-left corner of your Team's page, selecting API keys, and then the name of the desired third-party service.

To enable the Full Contact integration in particular you will need access to Full Contact's service. Follow the instructions here to create the required API key.

Usage


The following are the step's expected inputs and outputs and their specific types.

Step signature
fetch_full_contact_domains(domain: category, {
    "param": value
}) -> (
    name: category,
    location: category,
    twitter: category,
    linkedin: category,
    facebook: category,
    bio: text,
    logo: url,
    website: url,
    founded: number,
    employees: number,
    locale: category,
    category: category,
    angellist_profile: url,
    angellist_bio: text,
    angellist_followers: number,
    twitter_url: url,
    twitter_bio: text,
    twitter_followers: number,
    twitter_following: number,
    crunchbase_url: url,
    crunchbase_bio: text,
    linkedin_url: url,
    linkedin_bio: text,
    linkedin_followers: number,
    facebook_url: url,
    location_formatted: category,
    industries: list[category],
    keywords: list[category],
    global_traffic_rank: number
)

where the object {"param": value} is optional in most cases and if present may contain any of the parameters described in the corresponding section below.

Example

Since the step has no configuration parameters, it's simply

Example call (in recipe editor)
fetch_full_contact_domains(ds.company) -> (
  ds.domain,
  ds.name,
  ds.location,
  ds.twitter,
  ds.linkedin,
  ds.facebook,
  ds.bio,
  ds.logo,
  ds.website,
  ds.founded,
  ds.employees,
  ds.locale,
  ds.category,
  ds.angellist_profile,
  ds.angellist_bio,
  ds.angellist_followers,
  ds.twitter_url,
  ds.twitter_bio,
  ds.twitter_followers,
  ds.twitter_following,
  ds.crunchbase_url,
  ds.crunchbase_bio,
  ds.linkedin_url,
  ds.linkedin_bio,
  ds.linkedin_followers,
  ds.facebook_url,
  ds.location_formatted,
  ds.industries,
  ds.keywords,
  ds.global_traffic_rank
)

Inputs


domain: column:category

Categorical column containing domain of the company to fetch information for.

Outputs


name: column:category

Categorical column containing the name of the company.


location: column:category

Last known location of the company.


twitter: column:category

Column containing the Twitter profile of the company.


linkedin: column:category

Column containing the LinkedIn profile of the company.


facebook: column:category

Column containing the Facebook profile of the company.


bio: column:text

Column containing the biography most relevant to the company from their social media profiles.


logo: column:url

URL of the logo of the company.


website: column:url

URL pointing to the website of the company.


founded: column:number

Date the company was founnded.


employees: column:number

Approximation of the number of employees.


locale: column:category

Locale relevant to the company.


category: column:category

Category the company belongs to.


angellist_profile: column:url

URL of the AngelList company profile.


angellist_bio: column:text

Biography from the AngelList company profile.


angellist_followers: column:number

Number of followers the company currently has on AngelList.


twitter_url: column:url

URL of the Twitter company profile.


twitter_bio: column:text

Biography from the Twitter company profile.


twitter_followers: column:number

Number of followers the company currently has on Twitter.


twitter_following: column:number

Number of profiles the company currently follows on Twitter.


crunchbase_url: column:url

URL of the Crunchbase company profile.


crunchbase_bio: column:text

Biography from the CrunchBase company profile.


linkedin_url: column:url

URL of the LinkedIn company profile.


linkedin_bio: column:text

Biography from the LinkedIn company profile.


linkedin_followers: column:number

Number of profiles the company currently follows on LinkedIn.


facebook_url: column:url

URL of the Facebook company profile.


location_formatted: column:category

Last location known to the company's headquarters.


industries: column:list[category]

List of industries the company belongs to.


keywords: column:list[category]

List of keywords the company is associated to.


global_traffic_rank: column:number

Rank in the global web traffic for the company.

Parameters


integration: string

ID of the integration you'd like to use.