Typeform

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

Integrate the Typeform API with the Interzoid API

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

Generate Match Report with Interzoid API on New Submission from Typeform API
Typeform + Interzoid
 
Try it
Get Full Name Match Score with Interzoid API on New Submission from Typeform API
Typeform + Interzoid
 
Try it
Get Organization Match Score with Interzoid API on New Submission from Typeform API
Typeform + Interzoid
 
Try it
New Submission from the Typeform API

Emit new submission

 
Try it
Generate Match Report with the Interzoid API

Generate a Match Report using a dataset table or file (CSV/TSV/Excel). See the documentation

 
Try it
Create a Form with the Typeform API

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

 
Try it
Get Full Name Match Score with the Interzoid API

Retrieve a match score (likelihood of matching) between two individual names on a scale of 0-100. See the documentation

 
Try it
Create an Image with the Typeform API

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

 
Try it
Get Organization Match Score with the Interzoid API

Retrieve a match score (likelihood of matching) from 0-100 between two organization names. See the documentation

 
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 Interzoid

The Interzoid API offers a plethora of data-driven APIs that enable you to enrich, standardize, and deduplicate data across various fields such as demographics, financials, and text. With these capabilities, you can enhance data quality, drive better analytics, and create more intelligent workflows and applications. In Pipedream, you can integrate these APIs into serverless workflows, triggering actions based on various events, manipulating and routing data to other apps, services, or data stores with ease.

Connect Interzoid

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: {
    interzoid: {
      type: "app",
      app: "interzoid",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.interzoid.com/getremainingcredits`,
      params: {
        license: `${this.interzoid.$auth.api_key}`,
      },
    })
  },
})