Typeform lets you build no-code forms, quizzes, and surveys - and get more responses.
Verify (CASS) and correct a US address using a complete address. See the documentation
Verifies and corrects a US address using the input of a single address line, city, and state. See the documentation
Verifies and corrects a US address based on a single address line and a zip code. 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}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
addresszen: {
type: "app",
app: "addresszen",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.addresszen.com/v1/autocomplete/addresses`,
params: {
api_key: `${this.addresszen.$auth.key}`,
},
})
},
})