What do you want to automate

with Brave Search API and GoZen Growth?

Prompt, edit and deploy AI agents that connect to Brave Search API, GoZen Growth 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
Create Or Update Contact with the GoZen Growth API

Create or update a contact a on Gozen Growth. See the documentation

 
Try it
Integrate the Brave Search API API with the GoZen Growth API
Setup the Brave Search API API trigger to run a workflow which integrates with the GoZen Growth API. Pipedream's integration platform allows you to integrate Brave Search API and GoZen Growth 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`,
      },
    })
  },
})

Connect GoZen Growth

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    gozen_growth: {
      type: "app",
      app: "gozen_growth",
    }
  },
  async run({steps, $}) {
    const data = {
        "contact" :{
            "first_name" : "John",
            "email_address" : "john@example.com"
        }
    }
    return await axios($, {
      method: "post",
      url: `${this.gozen_growth.$auth.webhook_url}`,
      headers: {
        "Authorization": `${this.gozen_growth.$auth.authentication_token}`,
      },
      data,
    })
  },
})

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