Typeform lets you build no-code forms, quizzes, and surveys - and get more responses.
Provides a list of genres which may be used for filtering games via the MobyGames API. See the documentation
List all platforms available for filtering games via the MobyGames API. 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 MobyGames API provides access to a vast database of video game information, including titles, platforms, release dates, and more. In Pipedream, you can leverage this API to create powerful integrations and automated workflows. You might fetch game data to curate personalized game recommendations, sync release information with your calendar, or compile game statistics for analysis.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
mobygames: {
type: "app",
app: "mobygames",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.mobygames.com/v1/games`,
params: {
api_key: `${this.mobygames.$auth.api_key}`,
},
})
},
})