WebScraper.IO

Making web data extraction easy and accessible for everyone.

Integrate the WebScraper.IO API with the Hookdeck API

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

Create Connection with Hookdeck API on New Scraping Completed from WebScraper.IO API
WebScraper.IO + Hookdeck
 
Try it
Create Scraping Job with WebScraper.IO API on New Event Received (Instant) from Hookdeck API
Hookdeck + WebScraper.IO
 
Try it
Create Sitemap with WebScraper.IO API on New Event Received (Instant) from Hookdeck API
Hookdeck + WebScraper.IO
 
Try it
Get Scraping Jobs with WebScraper.IO API on New Event Received (Instant) from Hookdeck API
Hookdeck + WebScraper.IO
 
Try it
Retrieve all Events with Hookdeck API on New Scraping Completed from WebScraper.IO API
WebScraper.IO + Hookdeck
 
Try it
New Event Received (Instant) from the Hookdeck API

Emit new event when a new event is received from a HookDeck source.

 
Try it
New Scraping Completed from the WebScraper.IO API

Emit new event when a page scraping job has completed. See the docs here

 
Try it
Create Scraping Job with the WebScraper.IO API

Creates a scraping job (scrapes a sitemap). See the docs here

 
Try it
Create Connection with the Hookdeck API

This endpoint creates a connection. See the documentation.

 
Try it
Create Sitemap with the WebScraper.IO API

Creates a sitemap for the selected website. See the docs here

 
Try it
Get Scraping Jobs with the WebScraper.IO API

Retrieves a list of scraping jobs for a sitemap. See the docs here

 
Try it
Retrieve all Events with the Hookdeck API

This endpoint lists all events, or a subset of events. See the documentation.

 
Try it

Overview of WebScraper.IO

The WebScraper.IO API allows you to programmatically perform web scraping tasks, extracting structured data from websites. With the API, you can automate the gathering of web content for analysis, monitoring, and integration with other data sources. In Pipedream, you can leverage this API to build workflows that process, analyze, and act on the data you scrape without writing code for backend infrastructure.

Connect WebScraper.IO

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    webscraper_io: {
      type: "app",
      app: "webscraper_io",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.webscraper.io/api/v1/sitemaps`,
      params: {
        api_token: `${this.webscraper_io.$auth.api_key}`,
      },
    })
  },
})

Overview of Hookdeck

The Hookdeck API facilitates the management of webhooks, providing reliable webhook delivery, monitoring, and debugging solutions. With this API on Pipedream, you can automate workflows concerning incoming webhook data—transforming, routing, and ensuring they trigger the subsequent actions without fail. This could range from logging data for analysis, conditionally processing and forwarding webhook events to other endpoints, or integrating with third-party services for extended automation.

Connect Hookdeck

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    hookdeck: {
      type: "app",
      app: "hookdeck",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.hookdeck.com/2023-01-01/events`,
      headers: {
        Authorization: `Bearer ${this.hookdeck.$auth.api_key}`,
        "Content-Type": `application/json`,
      },
    })
  },
})