Text Analysis
Allows you to add one or more email addresses to the global suppressions group. See the docs here
Extracts information from texts with a given extractor. See the docs here
Uploads data to a classifier. This component can be used to upload new data to a classifier, to update the tags of texts that have already been uploaded, or both. See the docs here
MonkeyLearn is a text analysis platform that employs machine learning to extract and process data from chunks of text. By leveraging the MonkeyLearn API on Pipedream, you can automate the categorization of text, extract specific data, analyze sentiment, and more, all in real-time. This enables the development of powerful custom workflows that can analyze customer feedback, automate email processing, or provide insightful analytics on textual data from various sources.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
monkeylearn: {
type: "app",
app: "monkeylearn",
}
},
async run({steps, $}) {
const data = {
"data": [
"This is a great tool!",
]
}
return await axios($, {
method: "post",
url: `https://api.monkeylearn.com/v3/classifiers/cl_pi3C7JiL/classify/`,
headers: {
"Authorization": `Token ${this.monkeylearn.$auth.api_key}`,
"Content-Type": `application/json`,
},
data,
})
},
})
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}`,
},
})
},
})