Node package manager
Emit new event with the latest count of downloads for an npm package. See the documentation.
Emit new event when a new version of an npm package is published. See the documentation
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 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`,
},
})
},
})