Typeform lets you build no-code forms, quizzes, and surveys - and get more responses.
Returns comprehensive information about a location. See the documentation
Returns up to 5 of the most recent reviews for a specific location. See the documentation
Returns up to 10 locations found by the given search query. 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 Tripadvisor Content API allows you to tap into a rich repository of travel content, offering access to a vast array of information such as hotel details, reviews, photos, and ratings. With this API on Pipedream, you can automate the process of gathering travel-related insights, dynamically updating travel offerings, or responding to customer sentiment in real-time. The possibilities extend from integrating travel data into your services, monitoring brand reputation, to enriching user experiences with fresh, curated content.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
tripadvisor_content_api: {
type: "app",
app: "tripadvisor_content_api",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.content.tripadvisor.com/api/v1/location/search`,
params: {
key: `${this.tripadvisor_content_api.$auth.api_key}`,
searchQuery: `Bora Bora`,
},
})
},
})