Cradl AI

Automate internal document processes with AI.

Integrate the Cradl AI API with the Klaviyo API

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

Add Member To List with Klaviyo API on New Document Parsing Completed (Instant) from Cradl AI API
Cradl AI + Klaviyo
 
Try it
Create New List with Klaviyo API on New Document Parsing Completed (Instant) from Cradl AI API
Cradl AI + Klaviyo
 
Try it
Get Lists with Klaviyo API on New Document Parsing Completed (Instant) from Cradl AI API
Cradl AI + Klaviyo
 
Try it
New Document Parsing Completed (Instant) from the Cradl AI API

Emit new event when a document processing flow has completed.

 
Try it
Add Member To List with the Klaviyo API

Add member to a specific list. See the docs here

 
Try it
Parse Document with the Cradl AI API

Parses data from a document using a custom selected model. See the documentation

 
Try it
Create New List with the Klaviyo API

Creates a new list in an account. See the docs here

 
Try it
Parse Document with Human in the Loop with the Cradl AI API

Sends a document to an existing flow for human-in-the-loop processing. See the documentation

 
Try it
Get Lists with the Klaviyo API

Get a listing of all of the lists in an account. See the docs here

 
Try it

Overview of Cradl AI

Cradl AI is a powerful tool for creating customized machine learning models without extensive coding knowledge. It specializes in processing and understanding various forms of data, including text and images. Utilizing the Cradl AI API on Pipedream, developers can automate workflows involving data analysis, enhance data-driven decision-making, and integrate AI capabilities into applications seamlessly. This opens up opportunities for dynamic interactions with other services, streamlining operations and enhancing user experiences.

Connect Cradl AI

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: {
    cradl_ai: {
      type: "app",
      app: "cradl_ai",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.lucidtech.ai/v1/users`,
      headers: {
        Authorization: `Bearer ${this.cradl_ai.$auth.oauth_access_token}`,
      },
    })
  },
})

Overview of Klaviyo

The Klaviyo API grants you the power to automate and personalize your email marketing efforts. With it, you can manage lists, profiles, and campaigns, track event-driven communications, and analyze the results. By leveraging this API on Pipedream, you can create intricate, automated workflows that respond in real-time to your users' behavior, sync data across multiple platforms, and tailor your marketing strategies to improve engagement and conversion rates.

Connect Klaviyo

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: {
    klaviyo: {
      type: "app",
      app: "klaviyo",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: ` https://a.klaviyo.com/api/accounts/`,
      headers: {
        "Authorization": `Klaviyo-API-Key ${this.klaviyo.$auth.api_key}`,
        "revision": `2023-12-15`,
      },
    })
  },
})