Browserhub

Easy to use no-code web scraping and data extraction software.

Integrate the Browserhub API with the Mailwizz API

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

Add Subscriber with Mailwizz API on New Finished Automation Run from Browserhub API
Browserhub + Mailwizz
 
Try it
Create Campaign with Mailwizz API on New Finished Automation Run from Browserhub API
Browserhub + Mailwizz
 
Try it
Run Automation with Browserhub API on New Email Sent from Mailwizz API
Mailwizz + Browserhub
 
Try it
Run Automation with Browserhub API on New Subscriber Added from Mailwizz API
Mailwizz + Browserhub
 
Try it
Updaste Subscriber with Mailwizz API on New Finished Automation Run from Browserhub API
Browserhub + Mailwizz
 
Try it
New Finished Automation Run from the Browserhub API

Emit new event when an automation run has finished running. See the documentation

 
Try it
New Email Sent from the Mailwizz API

Emit new event when an email campaign is successfully sent.

 
Try it
New Subscriber Added from the Mailwizz API

Emit new event when a new subscriber is created.

 
Try it
Add Subscriber with the Mailwizz API

Create a new subscriber to a list. See the docs here

 
Try it
Run Automation with the Browserhub API

Triggers a pre-built automation by providing the scraper ID. See the documentation

 
Try it
Create Campaign with the Mailwizz API

Create a new campaign. See the docs here

 
Try it
Updaste Subscriber with the Mailwizz API

Update a specific subscriber. See the docs here

 
Try it

Overview of Browserhub

The Browserhub API offers automation and control over browser sessions, enabling users to create, manipulate, and extract data from web pages programmatically. Integrating Browserhub with Pipedream opens a world of possibilities for automating web interaction workflows, monitoring website changes, scraping data, and testing web applications. Pipedream's serverless platform allows for easy orchestration of API calls and data handling, making it a powerful tool for developers to harness the capabilities of Browserhub in a scalable and efficient manner.

Connect Browserhub

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: {
    browserhub: {
      type: "app",
      app: "browserhub",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.browserhub.io/v1/status`,
      headers: {
        Authorization: `Bearer ${this.browserhub.$auth.api_key}`,
      },
    })
  },
})

Overview of Mailwizz

Mailwizz offers a potent API that enables automation of email marketing tasks, subscriber management, campaign tracking, and more. Using Pipedream, you can harness this API to create custom workflows that trigger on specific events, process data, or synchronize with other apps. Pipedream's serverless architecture allows you to handle workflows at scale without managing infrastructure.

Connect Mailwizz

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: {
    mailwizz: {
      type: "app",
      app: "mailwizz",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://${this.mailwizz.$auth.url}/lists`,
      headers: {
        "X-API-KEY": `${this.mailwizz.$auth.api_key}`,
      },
    })
  },
})