Power your AI apps with clean data crawled from any website. It's also open-source.
Go to siteimport { axios } from "@pipedream/platform"
export default defineComponent({
props: {
firecrawl: {
type: "app",
app: "firecrawl",
}
},
async run({steps, $}) {
const data = {
"url": "https://pipedream.com",
}
return await axios($, {
method: "post",
url: `https://api.firecrawl.dev/v0/crawl`,
headers: {
Authorization: `Bearer ${this.firecrawl.$auth.api_key}`,
},
data,
})
},
})
Crawls a given input URL and returns the contents of sub-pages. See the documentation
Obtains the status and data from a previous crawl operation. See the documentation
Scrapes a URL and returns content from that page. See the documentation
FireCrawl uses API keys for authentication. When you connect your FireCrawl account, Pipedream securely stores the keys so you can easily authenticate to FireCrawl APIs in both code and no-code steps.