Typeform lets you build no-code forms, quizzes, and surveys - and get more responses.
Retrieves data for a specific product on eBay using the Countdown API. See the documentation
Retrieves customer reviews for a specific product on eBay. See the documentation
Retrieves search results from eBay. 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 Countdown API provides a simple way to create and manage countdowns to specific events or deadlines. Integrating this API with Pipedream allows for the creation of dynamic serverless workflows that can react to time-sensitive triggers. Whether it's sending reminders, updating statuses, or triggering events as deadlines approach, Pipedream's ability to connect to hundreds of apps gives you the flexibility to craft custom solutions around your countdowns.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
countdown_api: {
type: "app",
app: "countdown_api",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.countdownapi.com/request`,
params: {
api_key: `${this.countdown_api.$auth.api_key}`,
search_term: `Charizard`,
ebay_domain: `ebay.com`,
type: `search`,
},
})
},
})