The easiest way to extract structured data from any website with no coding.
Get a unique address where you can send emails to trigger your workflow.
Emits an event when a Browse AI task is completed. See the documentation
Emit new event when a task finishes with an error. See the documentation
Runs a robot on-demand with custom input parameters. See the documentation
Customize and send an email to the email address you registered with Pipedream. The email will be sent by notifications@pipedream.com.
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.
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}`,
},
})
},
})
export default defineComponent({
async run({ $ }) {
const options = {
subject: 'Your subject here',
text: 'Your text here'
};
$.send.email(options);
},
});