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,
})
},
})
Customer Feedback Analysis: Automatically pipe customer feedback from a support platform like Zendesk into MonkeyLearn to determine sentiment and categorize the feedback into topics. This can be especially useful for prioritizing support tickets and understanding common customer issues.
Email Processing Automation: Use the MonkeyLearn API to scan incoming emails for specific keywords or phrases, categorize them, and then triage to the appropriate department or individual within your organization. This could be coupled with Gmail or another email service integrated through Pipedream.
Social Media Monitoring: Create a real-time social media monitoring tool by connecting MonkeyLearn to Twitter's API via Pipedream. Analyze tweets mentioning your brand to gauge public sentiment and identify key influencers or detractors, providing valuable marketing insights.
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 uses API keys for authentication. When you connect your MonkeyLearn account, Pipedream securely stores the keys so you can easily authenticate to MonkeyLearn APIs in both code and no-code steps.
MonkeyLearn requires that you authenticate by sending an API Key with each request to grant you access to the API. See docs.