Typeform lets you build no-code forms, quizzes, and surveys - and get more responses.
Performs a Google Search and searches for a website in Search Engine Results Pages (SERP). See the documentation
Performs a Google search using the Serply 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 Serply API offers a way to automate SEO tasks by providing data about search engine results pages (SERPs). It enables you to retrieve search results, rankings, and related keywords, which can be essential for SEO analysis and content strategy. On Pipedream, you can leverage Serply to create powerful workflows that trigger on various events, process SERP data, and integrate with other services for a seamless automation experience.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
serply: {
type: "app",
app: "serply",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.serply.io/v1/search/q=pipedream`,
headers: {
"X-Api-Key": `${this.serply.$auth.api_token}`,
},
})
},
})