AI-powered video creations at scale
Emit new event for each message posted to one or more channels in a Discord server
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 for each command posted to one or more channels in a Discord server
Emit new event when a Heygen video fails during processing. See the documentation
Creates a talking photo from a provided image. See the documentation
Generates a video from a selected template. See the documentation
Fetches a link for a specific heygen video. See the documentation
Send a simple or structured message (using embeds) to a Discord channel
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}`,
},
})
},
})
The Discord API interacts seamlessly with Pipedream, empowering you to craft customized automations and workflows for your Discord server. With this powerful integration, you can automate tasks like message posting, user management, and notifications, based on a myriad of triggers and actions from different apps. These automations can enhance the Discord experience for community moderators and members, by synchronizing with external tools, organizing community engagement, and streamlining notifications.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
discord: {
type: "app",
app: "discord",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://discord.com/api/users/@me`,
headers: {
Authorization: `Bearer ${this.discord.$auth.oauth_access_token}`,
"accept": `application/json`,
},
})
},
})