AI-powered video creations at scale
Emit new event when a specific avatar video event occurs. The user can define a custom set of event(s) to trigger. See the documentation
Emit new event when a Heygen video fails during processing. See the documentation
Emit new event when a new avatar video has been successfully generated. See the documentation
Emit new event each time a record is added, updated, or deleted in an Airtable table. See the documentation
Creates a talking photo from a provided image. See the documentation
Generates a video from a selected template. See the documentation
Create one or more records in a table by passing an array of objects containing field names and values as key/value pairs. See the documentation
The HeyGen API offers tools for generating visual content, such as social media posts, banners, and other graphics programmatically. Integrating this API with Pipedream allows you to automate the creation and distribution of visual assets based on various triggers and data sources. For example, you can generate new images when a new product is added to your inventory, create customized social media posts from RSS feed items, or even automate weekly visual reports.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
heygen: {
type: "app",
app: "heygen",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.heygen.com/v2/avatars`,
headers: {
"X-Api-Key": `${this.heygen.$auth.api_token}`,
},
})
},
})
Airtable (OAuth) API on Pipedream allows you to manipulate and leverage your Airtable data in a myriad of powerful ways. Sync data between Airtable and other apps, trigger workflows on updates, or process bulk data operations asynchronously. By using Airtable's structured databases with Pipedream's serverless platform, you can craft custom automation solutions, integrate with other services seamlessly, and streamline complex data processes.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
airtable_oauth: {
type: "app",
app: "airtable_oauth",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.airtable.com/v0/meta/whoami`,
headers: {
Authorization: `Bearer ${this.airtable_oauth.$auth.oauth_access_token}`,
},
})
},
})