Streak

Streak is a flexible CRM and process management system that lives inside your Gmail inbox.

Integrate the Streak API with the Eden AI API

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

Generate Image with Eden AI API on New Contact (Instant) from Streak API
Streak + Eden AI
 
Try it
Analyze Sentiment in Text with Eden AI API on Box Changed Pipeline (Instant) from Streak API
Streak + Eden AI
 
Try it
Analyze Sentiment in Text with Eden AI API on Box Changed Stage (Instant) from Streak API
Streak + Eden AI
 
Try it
Analyze Sentiment in Text with Eden AI API on New Box (Instant) from Streak API
Streak + Eden AI
 
Try it
Analyze Sentiment in Text with Eden AI API on New Comment (Instant) from Streak API
Streak + Eden AI
 
Try it
Box Changed Pipeline (Instant) from the Streak API

Emit new event when a box changes pipelines.

 
Try it
Box Changed Stage (Instant) from the Streak API

Emit new event when a box's stage is updated in a pipeline.

 
Try it
New Box (Instant) from the Streak API

Emit new event when a new box is created in a pipeline.

 
Try it
New Comment (Instant) from the Streak API

Emit new event when a new comment is created within a pipeline.

 
Try it
New Contact (Instant) from the Streak API

Emit new event when a new contact is created within a team.

 
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
Create Box with the Streak API

Create a new box in Streak. See the docs

 
Try it
Generate Audio From Text with the Eden AI API

Generates an audio from the provided text. See the documentation

 
Try it
Create Task with the Streak API

Create a new task in a box. See the docs

 
Try it

Overview of Streak

The Streak API taps into the core of Streak’s CRM functionality within Gmail, allowing users to automate interactions with pipeline data, such as leads, contacts, and sales opportunities. With Pipedream, you can harness this API to craft serverless workflows that react to events in Streak and connect with countless other services to streamline CRM tasks, sync data across platforms, or trigger communications based on pipeline changes.

Connect Streak

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: {
    streak: {
      type: "app",
      app: "streak",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://www.streak.com/api/v1/users/me`,
      auth: {
        username: `${this.streak.$auth.api_key}`,
        password: ``,
      },
    })
  },
})

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`,
      },
    })
  },
})