Typeform lets you build no-code forms, quizzes, and surveys - and get more responses.
Creates a timestamped blockchain certificate using a provided file (local or URL). See the documentation
Creates a timestamped blockchain certificate using the provided text. 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 ScoreDetect API provides real-time sports scores and stats, offering a treasure trove of data for sports enthusiasts, bettors, and developers building applications tied to sports events. With Pipedream, you can leverage this API to create serverless workflows that react to live sports data, integrating with countless other apps to automate notifications, update databases, sync with social media, or even trigger custom actions based on game events.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
scoredetect: {
type: "app",
app: "scoredetect",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.scoredetect.com/me`,
headers: {
Authorization: `Bearer ${this.scoredetect.$auth.api_key}`,
},
})
},
})