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}`,
},
})
},
})
Generates a custom voice from a batch of input audio data. See the documentation
Generates an audio file from the provided text. See the documentation
LMNT uses API keys for authentication. When you connect your LMNT account, Pipedream securely stores the keys so you can easily authenticate to LMNT APIs in both code and no-code steps.