Typebot

Typebot gives you powerful blocks to create unique chat experiences. Embed them anywhere on your web/mobile apps and start collecting results like magic.

Integrate the Typebot API with the Eden AI API

Setup the Typebot API trigger to run a workflow which integrates with the Eden AI API. Pipedream's integration platform allows you to integrate Typebot and Eden AI remarkably fast. Free for developers.

Analyze Sentiment in Text with Eden AI API on New Zapier Step Triggered (Instant) from Typebot API
Typebot + Eden AI
 
Try it
Detect AI Content with Eden AI API on New Zapier Step Triggered (Instant) from Typebot API
Typebot + Eden AI
 
Try it
Generate Audio From Text with Eden AI API on New Zapier Step Triggered (Instant) from Typebot API
Typebot + Eden AI
 
Try it
Generate Image with Eden AI API on New Zapier Step Triggered (Instant) from Typebot API
Typebot + Eden AI
 
Try it
Translate Document with Eden AI API on New Zapier Step Triggered (Instant) from Typebot API
Typebot + Eden AI
 
Try it
New Zapier Step Triggered (Instant) from the Typebot API

Emit new event when a zapier step is triggered. See the docs

 
Try it
Analyze Sentiment in Text with the Eden AI API

Analyzes sentiment in the provided text. See the documentation

 
Try it
Detect AI Content with the Eden AI API

Detects AI content in the provided text. See the documentation

 
Try it
Generate Audio From Text with the Eden AI API

Generates an audio from the provided text. See the documentation

 
Try it
Generate Image with the Eden AI API

Generates an image from the provided description. See the documentation

 
Try it
Translate Document with the Eden AI API

Translates a document from a local file or URL. See the documentation

 
Try it

Overview of Typebot

Typebot is a conversational form builder that allows you to create interactive and engaging forms for data collection. With Typebot API on Pipedream, you can automate the processing of form submissions, synchronize data with other services, and trigger customized workflows. Utilize the data gathered from Typebot in real-time, enrich it with other services, and streamline processes like lead generation, surveys, and feedback collection.

Connect Typebot

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    typebot: {
      type: "app",
      app: "typebot",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://typebot.io/api/users/me`,
      headers: {
        Authorization: `Bearer ${this.typebot.$auth.api_token}`,
      },
    })
  },
})

Overview of Eden AI

Eden AI provides a simple API for integrating a variety of AI services from different providers. On Pipedream, you can leverage Eden AI to automate tasks that involve natural language processing, computer vision, and other AI capabilities. By connecting Eden AI with other apps, you can create powerful workflows for data enrichment, content moderation, or sentiment analysis without extensive AI expertise.

Connect Eden AI

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    eden_ai: {
      type: "app",
      app: "eden_ai",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.edenai.run/v2/ocr/custom_document_parsing_async`,
      headers: {
        Authorization: `Bearer ${this.eden_ai.$auth.api_key}`,
        "Accept": `application/json`,
        "Content-Type": `application/json`,
      },
    })
  },
})