Trigger workflows on an interval or cron schedule.
Fetches specified data for a company using a domain name. See the documentation
Obtains HTML from a given website through web scraping for high performance access and interpretation. See the documentation
Retrieves the core technology used on a designated website. (CMS, Framework, Analytics, CDN, Hosting, etc.) See the documentation
The Schedule app in Pipedream is a powerful tool that allows you to trigger workflows at regular intervals, ranging from every minute to once a year. This enables the automation of repetitive tasks and the scheduling of actions to occur without manual intervention. By leveraging this API, you can execute code, run integrations, and process data on a reliable schedule, all within Pipedream's serverless environment.
Piloterr API allows you to integrate and automate various aspects of project management and team collaboration. Within Pipedream's serverless platform, you can leverage this API to create custom workflows, connecting Piloterr's capabilities with other apps to streamline operations, trigger actions based on project updates, and synchronize data across different tools.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
piloterr: {
type: "app",
app: "piloterr",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://piloterr.com/api/usage`,
headers: {
"x-api-key": `${this.piloterr.$auth.api_key}`,
},
})
},
})