Browse AI

The easiest way to extract structured data from any website with no coding.

Integrate the Browse AI API with the Formatting API

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

[Data] Convert JSON to String with Formatting API on Task Completed (Instant) from Browse AI API
Browse AI + Formatting
 
Try it
[Data] Convert JSON to String with Formatting API on Task Finished With Error (Instant) from Browse AI API
Browse AI + Formatting
 
Try it
[Data] Parse JSON with Formatting API on Task Completed (Instant) from Browse AI API
Browse AI + Formatting
 
Try it
[Data] Parse JSON with Formatting API on Task Finished With Error (Instant) from Browse AI API
Browse AI + Formatting
 
Try it
[Date/Time] Add/Subtract Time with Formatting API on Task Completed (Instant) from Browse AI API
Browse AI + Formatting
 
Try it
Task Completed (Instant) from the Browse AI API

Emits an event when a Browse AI task is completed. See the documentation

 
Try it
Task Finished With Error (Instant) from the Browse AI API

Emit new event when a task finishes with an error. See the documentation

 
Try it
Execute Task with the Browse AI API

Runs a robot on-demand with custom input parameters. See the documentation

 
Try it
[Data] Convert JSON to String with the Formatting API

Convert an object to a JSON format string

 
Try it
[Data] Parse JSON with the Formatting API

Parse a JSON string

 
Try it
[Date/Time] Add/Subtract Time with the Formatting API

Add or subtract time from a given input

 
Try it
[Date/Time] Compare Dates with the Formatting API

Get the duration between two dates in days, hours, minutes, and seconds along with checking if they are the same.

 
Try it

Overview of Browse AI

The Browse AI API enables the automation of data extraction from websites, turning web pages into organized data. It's built for non-coders and coders alike, allowing for custom web scraping and monitoring tasks. Within Pipedream, you can harness Browse AI to create intricate workflows that trigger actions in other apps based on the data you extract. Think of automated competitive analysis, price tracking, or content changes detection, all streamlined through Pipedream's serverless platform.

Connect Browse AI

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

Connect Formatting

1
2
3
4
5
6
export default defineComponent({
  async run({ steps, $ }) {
    const text = ' Hello world! ';
    return text.trim()
  },
})