Compare prices and keep on eye on the availability of your competitor hotels.
Emit new event when a new competitor is added. See the docs
Emit new event when a new stay is created. See the docs
Write custom Node.js code and use any of the 400k+ npm packages available. Refer to the Pipedream Node docs to learn more.
Retrieve a list of montiored competitors. See the docs
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
wubook_ratechecker: {
type: "app",
app: "wubook_ratechecker",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://wubook.net/wrpeeker/api/user`,
params: {
format: `json`,
token: `${this.wubook_ratechecker.$auth.api_token}`,
},
})
},
})
// To use previous step data, pass the `steps` object to the run() function
export default defineComponent({
async run({ steps, $ }) {
// Return data to use it in future steps
return steps.trigger.event
},
})