Oxylabs

Market-leading proxy & web scraping solutions provider.

Integrate the Oxylabs API with the Schedule API

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

Custom Interval from the Schedule API

Trigger your workflow every N hours, minutes or seconds.

 
Try it
Daily schedule from the Schedule API

Trigger your workflow every day.

 
Try it
Monthly Schedule from the Schedule API

Trigger your workflow on one or more days each month at a specific time (with timezone support).

 
Try it
Weekly schedule from the Schedule API

Trigger your workflow on one or more days each week at a specific time (with timezone support).

 
Try it

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,
    })
  },
})

Overview of Schedule

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.