Typeform

Typeform lets you build no-code forms, quizzes, and surveys - and get more responses.

Integrate the Typeform API with the Clearbit API

Setup the Typeform API trigger to run a workflow which integrates with the Clearbit API. Pipedream's integration platform allows you to integrate Typeform and Clearbit remarkably fast. Free for developers.

Company Name to Domain with Clearbit API on New Submission from Typeform API
Typeform + Clearbit
 
Try it
Domain lookup with Clearbit API on New Submission from Typeform API
Typeform + Clearbit
 
Try it
Email lookup with Clearbit API on New Submission from Typeform API
Typeform + Clearbit
 
Try it
Find Companies with Clearbit API on New Submission from Typeform API
Typeform + Clearbit
 
Try it
Find Contacts with Clearbit API on New Submission from Typeform API
Typeform + Clearbit
 
Try it
New Submission from the Typeform API

Emit new submission

 
Try it
Company Name to Domain with the Clearbit API

The Company Name to Domain action lets you convert the exact name of a company to a website domain, and a logo. See the docs here.

 
Try it
Create a Form with the Typeform API

Creates a form with its corresponing fields. See the docs here

 
Try it
Domain lookup with the Clearbit API

The Company API allows you to look up a company by their domain. See the docs here.

 
Try it
Create an Image with the Typeform API

Adds an image in your Typeform account. See the docs here

 
Try it
Email lookup with the Clearbit API

This endpoint retrieves a person by email address. See the docs here

 
Try it

Overview of Typeform

The Typeform API furnishes you with the means to create dynamic forms and collect user responses in real-time. By leveraging this API within Pipedream's serverless platform, you can automate workflows to process this data, integrate seamlessly with other services, and react to form submissions instantaneously. This empowers you to craft tailored responses, synchronize with databases, trigger email campaigns, or even manage event registrations without manual intervention.

Connect Typeform

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    typeform: {
      type: "app",
      app: "typeform",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.typeform.com/me`,
      headers: {
        Authorization: `Bearer ${this.typeform.$auth.oauth_access_token}`,
      },
    })
  },
})

Overview of Clearbit

Clearbit API offers robust data enrichment capabilities, allowing you to seamlessly integrate comprehensive business intelligence into your applications. By leveraging Clearbit, you can append real-time insights to your leads, automate personalized outreach, and gain a deeper understanding of your customers. With insights ranging from company profiles, contact details, to employment information, the possibilities to enhance your marketing, sales, and customer support efforts are vast.

Connect Clearbit

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    clearbit: {
      type: "app",
      app: "clearbit",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://person.clearbit.com/v1/people/email/alex@alexmaccaw.com`,
      headers: {
        Authorization: `Bearer ${this.clearbit.$auth.secret_api_key}`,
      },
    })
  },
})