What do you want to automate

with ProAbono and Langfuse?

Prompt, edit and deploy AI agents that connect to ProAbono, Langfuse 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 Customer Created from ProAbono API
ProAbono + Langfuse
 
Try it
Add Feedback with Langfuse API on New Offer Created from ProAbono API
ProAbono + Langfuse
 
Try it
Add Feedback with Langfuse API on New Subscription Created from ProAbono API
ProAbono + Langfuse
 
Try it
Create or Update a Customer with ProAbono API on New Score Received from Langfuse API
Langfuse + ProAbono
 
Try it
Create or Update a Customer with ProAbono API on New Trace Received from Langfuse API
Langfuse + ProAbono
 
Try it
New Customer Created from the ProAbono API

Emit new event when a new customer is created. See the documentation

 
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 Offer Created from the ProAbono API

Emit new event when a new offer is created. See the documentation

 
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 Subscription Created from the ProAbono API

Emit new event when a new subscription is created. See the documentation

 
Try it
Create or Update a Customer with the ProAbono API

Creates a new customer or updates an existing one in the ProAbono system. See the documentation

 
Try it
Add Feedback with the Langfuse API

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

 
Try it
Create Subscription with the ProAbono API

Initializes a new subscription for a customer in the ProAbono system. See the documentation

 
Try it
Log Trace with the Langfuse API

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

 
Try it
Retrieve Customer with the ProAbono API

Fetches an existing customer from the proabono system. See the documentation

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

Overview of ProAbono

ProAbono is a service built to manage subscription billing with fine-grained control over pricing, features, customers, and usage. With the ProAbono API, Pipedream can be your automation partner to streamline subscription operations. Use cases include synchronizing customer data, updating subscription details, and managing billing events. Pipedream's serverless platform allows you to trigger workflows on schedule, by webhook, or via other app events, making it ideal for integrating with ProAbono to handle complex subscription logic.

Connect ProAbono

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    proabono: {
      type: "app",
      app: "proabono",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `${this.proabono.$auth.api_endpoint}/v1/Customers`,
      headers: {
        "Accept": `application/json`,
      },
      auth: {
        username: `${this.proabono.$auth.agent_key}`,
        password: `${this.proabono.$auth.api_key}`,
      },
    })
  },
})

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

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