Node package manager
Emit new event with the latest count of downloads for an npm package. See the documentation.
Emit new event when a new version of an npm package is published. See the documentation
Updates the configuration settings for a specific assistant. See the documentation
The Vapi API delivers voice automation capabilities, letting you build powerful voice response systems. With Vapi, you can automate calls, send voice messages, and create dynamic interactions through speech recognition and text-to-speech. Pipedream's serverless platform allows you to integrate Vapi's API with numerous other services to automate workflows, react to events, and orchestrate complex voice-enabled processes.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
vapi: {
type: "app",
app: "vapi",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.vapi.ai/call`,
headers: {
Authorization: `Bearer ${this.vapi.$auth.api_key}`,
},
})
},
})