What do you want to automate

with Langfuse and Height?

Prompt, edit and deploy AI agents that connect to Langfuse, Height 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
Add Feedback with Langfuse API on New Completed Task from Height API
Height + Langfuse
 
Try it
Add Feedback with Langfuse API on New or Updated Task from Height API
Height + Langfuse
 
Try it
Add Feedback with Langfuse API on New Task Added from Height API
Height + Langfuse
 
Try it
Create Task with Height API on New Score Received from Langfuse API
Langfuse + Height
 
Try it
Create Task with Height API on New Trace Received from Langfuse API
Langfuse + Height
 
Try it
New Completed Task from the Height API

Emit new event when a task is marked as complete.

 
Try it
New Score Received from the Langfuse API

Emit new event when user feedback (score) is submitted on a trace in Langfuse. See the documentation

 
Try it
New or Updated Task from the Height API

Emit new event whenever a task is created or updated in Height.

 
Try it
New Trace Received from the Langfuse API

Emit new event when a new trace is recorded in Langfuse. See the documentation

 
Try it
New Task Added from the Height API

Emit new event when a new task is added in Height

 
Try it
Add Feedback with the Langfuse API

Attach user feedback to an existing trace in Langfuse. See the documentation

 
Try it
Create Task with the Height API

Creates a new task within your workspace. See the documentation

 
Try it
Log Trace with the Langfuse API

Log a new trace in LangFuse with details. See the documentation

 
Try it
Search Tasks with the Height API

Searches for tasks within your workspace using a text query. See the documentation

 
Try it
Update Task with the Height API

Updates a specified task within your workspace. See the documentation

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

Connect Langfuse

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: {
    langfuse: {
      type: "app",
      app: "langfuse",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://${this.langfuse.$auth.region}.langfuse.com/api/public/observations`,
      auth: {
        username: `${this.langfuse.$auth.public_key}`,
        password: `${this.langfuse.$auth.secret_key}`,
      },
    })
  },
})

Connect Height

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: {
    height: {
      type: "app",
      app: "height",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.height.app/users/me`,
      headers: {
        "Authorization": `api-key ${this.height.$auth.api_key}`,
      },
    })
  },
})

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