AI made easy for Developers | The best AI engines in one API
Analyzes sentiment in the provided text. See the documentation
Allows you to add one or more email addresses to the global suppressions group. See the docs here
Detects AI content in the provided text. See the documentation
Generates an audio from the provided text. See the documentation
Eden AI provides a simple API for integrating a variety of AI services from different providers. On Pipedream, you can leverage Eden AI to automate tasks that involve natural language processing, computer vision, and other AI capabilities. By connecting Eden AI with other apps, you can create powerful workflows for data enrichment, content moderation, or sentiment analysis without extensive AI expertise.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
eden_ai: {
type: "app",
app: "eden_ai",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.edenai.run/v2/ocr/custom_document_parsing_async`,
headers: {
Authorization: `Bearer ${this.eden_ai.$auth.api_key}`,
"Accept": `application/json`,
"Content-Type": `application/json`,
},
})
},
})
The Twilio SendGrid API opens up a world of possibilities for email automation, enabling you to send emails efficiently and track their performance. With this API, you can programmatically create and send personalized email campaigns, manage contacts, and parse inbound emails for data extraction. When you harness the power of Pipedream, you can connect SendGrid to hundreds of other apps to automate workflows, such as triggering email notifications based on specific actions, syncing email stats with your analytics, or handling incoming emails to create tasks or tickets.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
sendgrid: {
type: "app",
app: "sendgrid",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.sendgrid.com/v3/user/account`,
headers: {
Authorization: `Bearer ${this.sendgrid.$auth.api_key}`,
},
})
},
})