What do you want to automate

with LlamaIndex and Tubular?

Prompt, edit and deploy AI agents that connect to LlamaIndex, Tubular 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
Create Lead with the Tubular API

Create lead and return its ID. See the documentation

 
Try it
Get Deals By Date with the Tubular API

Get deals ordered by date of creation. See the documentation

 
Try it
Get Leads with the Tubular API

Get leads ordered by date of creation. See the documentation

 
Try it
Integrate the LlamaIndex API with the Tubular API
Setup the LlamaIndex API trigger to run a workflow which integrates with the Tubular API. Pipedream's integration platform allows you to integrate LlamaIndex and Tubular remarkably fast. Free for developers.

Connect LlamaIndex

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";
import FormData from "form-data";
import request from "request";

export default defineComponent({
  props: {
    llamaindex: {
      type: "app",
      app: "llamaindex",
    }
  },
  async run({steps, $}) {
    const data = new FormData();
    data.append("file", request("https://www.learningcontainer.com/wp-content/uploads/2019/09/sample-pdf-file.pdf")); 
    return await axios($, {
      method: "POST",
      url: `${this.llamaindex.$auth.url}/api/parsing/upload`,
      headers: {
        "Content-Type": `multipart/form-data`,
        Authorization: `Bearer ${this.llamaindex.$auth.api_key}`,
      },
      data,
    })
  },
})

Overview of Tubular

The Tubular API furnishes you with the tools to craft intricate customer relationship management workflows within Pipedream. Utilize it to automate processes, track sales pipeline progress, manage contacts, and gain insights from your sales data. With Tubular's API, you can seamlessly integrate sales data into other systems, establish notifications for sales updates, and much more, making it simpler for teams to collaborate and stay informed on sales activities.

Connect Tubular

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    tubular: {
      type: "app",
      app: "tubular",
    }
  },
  async run({steps, $}) {
    const data = {
      "query": `{viewer{id fullName}}`,
    }
    return await axios($, {
      method: "post",
      url: `https://api.tubular.io/graphql`,
      headers: {
        "Authorization": `${this.tubular.$auth.api_token}`,
        "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