What do you want to automate

with Brave Search API and Crawlbase?

Prompt, edit and deploy AI agents that connect to Brave Search API, Crawlbase and 2,500+ other apps in seconds.

Trusted by 1,000,000+ developers from startups to Fortune 500 companies

Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Web Search with the Brave Search API API

Query Brave Search and get back search results from the web. See the documentation

 
Try it
Integrate the Brave Search API API with the Crawlbase API
Setup the Brave Search API API trigger to run a workflow which integrates with the Crawlbase API. Pipedream's integration platform allows you to integrate Brave Search API and Crawlbase remarkably fast. Free for developers.

Connect Brave Search API

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    brave_search_api: {
      type: "app",
      app: "brave_search_api",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.search.brave.com/res/v1/web/search`,
      headers: {
        "x-subscription-token": `${this.brave_search_api.$auth.api_key}`,
        "accept": `application/json`,
        "accept-encoding": `gzip`,
      },
      params: {
        "q": `pipedream`,
      },
    })
  },
})

Overview of Crawlbase

The Crawlbase API provides powerful tools for web scraping and data extraction from any webpage. It handles large-scale data collection tasks, bypassing bot protection and CAPTCHAs, and returning structured data. Within Pipedream, you can leverage Crawlbase to automate the harvesting of web data, integrate scraped content with other services, and process it for analysis, reporting, or triggering other workflows.

Connect Crawlbase

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: {
    crawlbase: {
      type: "app",
      app: "crawlbase",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.crawlbase.com/account`,
      params: {
        token: `${this.crawlbase.$auth.api_token}`,
        product: `crawling-api`,
      },
    })
  },
})

Trusted by 1,000,000+ developers from startups to Fortune 500 companies

Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo