What do you want to automate

with neetoCal and LMNT?

Prompt, edit and deploy AI agents that connect to neetoCal, LMNT 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 Custom Voice with the LMNT API

Generates a custom voice from a batch of input audio data. See the documentation

 
Try it
Generate Speech from Text with the LMNT API

Generates an audio file from the provided text. See the documentation

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

Connect neetoCal

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: {
    neetocal: {
      type: "app",
      app: "neetocal",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://${this.neetocal.$auth.subdomain}.neetocal.com/api/external/v1/bookings`,
      headers: {
        "x-api-key": `${this.neetocal.$auth.api_key}`,
      },
    })
  },
})

Connect LMNT

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: {
    lmnt: {
      type: "app",
      app: "lmnt",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.lmnt.com/v1/account`,
      headers: {
        "X-API-Key": `${this.lmnt.$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