What do you want to automate

with Webscrape AI and Botsonic?

Prompt, edit and deploy AI agents that connect to Webscrape AI, Botsonic 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
Integrate the Webscrape AI API with the Botsonic API
Setup the Webscrape AI API trigger to run a workflow which integrates with the Botsonic API. Pipedream's integration platform allows you to integrate Webscrape AI and Botsonic remarkably fast. Free for developers.

Connect Webscrape AI

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    webscrape_ai: {
      type: "app",
      app: "webscrape_ai",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.webscrapeai.com/scrapeWebSite`,
      params: {
        url: `https://news.ycombinator.com/`,
        command: `I want to extract all the news details`,
        apiKey: `${this.webscrape_ai.$auth.api_key}`,
        schema: `{"author":"string","comments_count":"integer","points":"integer","posted_time":"string","title":"string","url":"url"}`,
      },
    })
  },
})

Connect Botsonic

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: {
    botsonic: {
      type: "app",
      app: "botsonic",
    }
  },
  async run({steps, $}) {
    const data = {
      "input_text": `{{your_input_text}}`, //E.g. How to develop these skills?
      "chat_id": `{{your_chat_id}}`, //E.g. 9f2569da-ba86-4a88-a4c0-9932a91bedf4
    }
    return await axios($, {
      method: "post",
      url: `${this.botsonic.$auth.generate_endpoint}`,
      headers: {
        "token": `${this.botsonic.$auth.api_key}`,
        "Accept": `application/json`,
        "Content-Type": `application/json`,
      },
      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