WebRTC video and audio APIs for developers. Add live video and audio experiences to any product.
Write custom Node.js code and use any of the 400k+ npm packages available. Refer to the Pipedream Node docs to learn more.
With the Daily API, you can build a variety of applications and features
including:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
daily: {
type: "app",
app: "daily",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.daily.co/v1/`,
headers: {
Authorization: `Bearer ${this.daily.$auth.api_key}`,
"Content-Type": `application/json`,
},
})
},
})
// To use previous step data, pass the `steps` object to the run() function
export default defineComponent({
async run({ steps, $ }) {
// Return data to use it in future steps
return steps.trigger.event
},
})