Typeform lets you build no-code forms, quizzes, and surveys - and get more responses.
Creates a template or token type that allows for minting of new NFTs. See the documentation
Deploys a new NFT contract, or collection, on a specific blockchain. 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 Venly (NFT API) provides a platform for managing and integrating Non-Fungible Tokens (NFTs) into applications. With this API, you can create and manage wallets, mint and transfer NFTs, and query blockchain data, among other features. Leveraging the Venly API within Pipedream allows developers to streamline NFT operations by creating automated workflows, connecting to other services, and processing blockchain events in real-time.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
venly: {
type: "app",
app: "venly",
}
},
async run({steps, $}) {
return await axios($, {
url: `${this.venly.$auth.service_environment}/api/env`,
headers: {
Authorization: `Bearer ${this.venly.$auth.oauth_access_token}`,
},
})
},
})