Typeform lets you build no-code forms, quizzes, and surveys - and get more responses.
Fetches detailed LinkedIn profile information based on the provided URL. See the documentation
Fetches the work email of a LinkedIn profile based on the specified URL. See the documentation
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.
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}`,
},
})
},
})
Leadzen.ai is an API designed to enhance lead management and marketing automation. It allows users to dynamically score, segment, and nurture leads based on various criteria and interactions. By integrating Leadzen.ai with Pipedream, users can automate complex workflows, sync data across multiple platforms, and trigger actions based on lead behavior in real-time. This integration enables marketers to refine their engagement strategies, personalize communications more effectively, and drive sales conversions more efficiently.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
leadzen_ai: {
type: "app",
app: "leadzen_ai",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.leadzen.ai/api/credits`,
headers: {
Authorization: `Bearer ${this.leadzen_ai.$auth.oauth_access_token}`,
"accept": `application/json`,
},
})
},
})