with Trawlingweb and Recruiterflow?
The Trawlingweb API lets you access real-time data from across the web. By integrating with Pipedream, you can automate web monitoring tasks, analyze trends, and react to content changes without manual oversight. Pipedream's serverless platform allows for seamless integration with Trawlingweb, enabling you to create workflows that can, for instance, trigger on specific API responses, process the data, and connect with multiple other services.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
trawlingweb: {
type: "app",
app: "trawlingweb",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.trawlingweb.com`,
params: {
token: `${this.trawlingweb.$auth.api_token}`,
"q": `Pipedream`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
recruiterflow: {
type: "app",
app: "recruiterflow",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://recruiterflow.com/api/external/user/list`,
headers: {
"rf-api-key": `${this.recruiterflow.$auth.api_key}`,
},
params: {
include_count: `true`,
},
})
},
})