Node package manager
Emit new event with the latest count of downloads for an npm package. See the documentation.
Emit new event when a selected actor is run and finishes.
Emit new event when a new version of an npm package is published. See the documentation
Emit new event when a selected task is run and finishes.
Performs an execution of a selected actor in Apify. See the documentation
Executes a scraper on a specific website and returns its content as text. This action is perfect for extracting content from a single page.
Create or update a record in the key-value store of Apify. See the documentation
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}`,
},
})
},
})