What do you want to automate

with npm and Oxylabs?

Prompt, edit and deploy AI agents that connect to npm, Oxylabs and 2,500+ other apps in seconds.

Trusted by 1,000,000+ developers from startups to Fortune 500 companies

Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Create Proxy Session with Oxylabs API on New Download Counts from npm API
npm + Oxylabs
 
Try it
Create Schedule with Oxylabs API on New Download Counts from npm API
npm + Oxylabs
 
Try it
Scrape URL with Oxylabs API on New Download Counts from npm API
npm + Oxylabs
 
Try it
Scrape with Query with Oxylabs API on New Download Counts from npm API
npm + Oxylabs
 
Try it
Create Proxy Session with Oxylabs API on New Package Version from npm API
npm + Oxylabs
 
Try it
New Download Counts from the npm API

Emit new event with the latest count of downloads for an npm package. See the documentation

 
Try it
New Package Version from the npm API

Emit new event when a new version of an npm package is published. See the documentation

 
Try it
New Scheduled Run Completed from the Oxylabs API

Emit new event when a new scheduled run is completed. See the documentation

 
Try it
Create Proxy Session with the Oxylabs API

Establish a proxy session using the Residential Proxy endpoint. See the documentation

 
Try it
Create Schedule with the Oxylabs API

Create a schedule for a scraping job. See the documentation

 
Try it
Scrape URL with the Oxylabs API

Scrape a URL. See the documentation

 
Try it
Scrape with Query with the Oxylabs API

Extract data using a search query. See the documentation

 
Try it
Integrate the npm API with the Oxylabs API
Setup the npm API trigger to run a workflow which integrates with the Oxylabs API. Pipedream's integration platform allows you to integrate npm and Oxylabs remarkably fast. Free for developers.

Overview of Oxylabs

The Oxylabs API provides robust tools for web data extraction, enabling you to gather vast amounts of data efficiently from various sources across the web. With Pipedream's serverless platform, you can harness this power to create automated workflows that trigger on specific events, process the data, and connect to other services. Whether you're monitoring brand sentiment, tracking prices, or conducting market research, integrating Oxylabs with Pipedream can significantly streamline your data collection and analysis tasks.

Connect Oxylabs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    oxylabs: {
      type: "app",
      app: "oxylabs",
    }
  },
  async run({steps, $}) {
    const data = {
      "geo_location": `United States`,
      "url": `https://books.toscrape.com/catalogue/a-light-in-the-attic_1000/index.html`,
      "source": `universal`,
    }
    return await axios($, {
      method: "post",
      url: `https://${this.oxylabs.$auth.api_name}.oxylabs.io/v1/queries`,
      headers: {
        "Content-Type": `application/json`,
      },
      auth: {
        username: `${this.oxylabs.$auth.username}`,
        password: `${this.oxylabs.$auth.password}`,
      },
      data,
    })
  },
})

Trusted by 1,000,000+ developers from startups to Fortune 500 companies

Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo