with Schedule and Apify?
Trigger your workflow on one or more days each month at a specific time (with timezone support).
Emit new event when a selected Actor is run and finishes.
Trigger your workflow on one or more days each week at a specific time (with timezone support).
Gets a record from a key-value store. See the documentation
Performs an execution of a selected Actor in Apify. See the documentation
Run a specific task and optionally wait for its termination. Not for use with Pipedream Connect. See the documentation
Run a specific task and return its dataset items. 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.
The Apify API unleashes the power to automate web scraping, process data, and orchestrate web automation workflows. By utilizing Apify on Pipedream, you can create dynamic serverless workflows to manage tasks like extracting data from websites, running browser automation, and scheduling these jobs to run autonomously. It integrates smoothly with Pipedream's capabilities to trigger actions on various other apps, store the results, and manage complex data flow with minimal setup.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
apify: {
type: "app",
app: "apify",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.apify.com/v2/users/me`,
headers: {
Authorization: `Bearer ${this.apify.$auth.api_token}`,
},
})
},
})