Typeform lets you build no-code forms, quizzes, and surveys - and get more responses.
Retrieve details about an organization. See the documentation
Search for organizations based on specified criteria. 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}`,
},
})
},
})
The Crunchbase API grants access to a trove of information on companies, investors, and the key players steering them. With Pipedream, you can harness this data to enrich CRM leads, track investments, or automate market research. By marrying the Crunchbase API with Pipedream's serverless platform, you unlock a realm of possibilities, creating workflows that respond dynamically to events like funding rounds or acquisitions, or that periodically aggregate data for analysis.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
crunchbase: {
type: "app",
app: "crunchbase",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.crunchbase.com/v3.1/organizations?user_key=${this.crunchbase.$auth.user_key}`,
})
},
})