MonkeyLearn

Text Analysis

Integrate the MonkeyLearn API with the Schedule API

Setup the MonkeyLearn API trigger to run a workflow which integrates with the Schedule API. Pipedream's integration platform allows you to integrate MonkeyLearn and Schedule remarkably fast. Free for developers.

Classify Text with MonkeyLearn API on Custom Interval from Schedule API
Schedule + MonkeyLearn
 
Try it
Classify Text with MonkeyLearn API on Daily schedule from Schedule API
Schedule + MonkeyLearn
 
Try it
Classify Text with MonkeyLearn API on Monthly Schedule from Schedule API
Schedule + MonkeyLearn
 
Try it
Classify Text with MonkeyLearn API on Weekly schedule from Schedule API
Schedule + MonkeyLearn
 
Try it
Extract Text with MonkeyLearn API on Custom Interval from Schedule API
Schedule + MonkeyLearn
 
Try it
Custom Interval from the Schedule API

Trigger your workflow every N hours, minutes or seconds.

 
Try it
Daily schedule from the Schedule API

Trigger your workflow every day.

 
Try it
Monthly Schedule from the Schedule API

Trigger your workflow on one or more days each month at a specific time (with timezone support).

 
Try it
Weekly schedule from the Schedule API

Trigger your workflow on one or more days each week at a specific time (with timezone support).

 
Try it
Classify Text with the MonkeyLearn API

Classifies texts with a given classifier. See the docs here

 
Try it
Extract Text with the MonkeyLearn API

Extracts information from texts with a given extractor. See the docs here

 
Try it
Upload Training Data with the MonkeyLearn API

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

 
Try it

Overview of MonkeyLearn

With the MonkeyLearn API, you can build a number of different applications that
can analyze text data. Some examples include:

  • Sentiment analysis
  • Keyword extraction
  • Language detection
  • Text classification

For more information on the MonkeyLearn API, please visit their website at
monkeylearn.com

Connect MonkeyLearn

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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,
    })
  },
})

Overview of Schedule

With Schedule - A trigger provided by Pipedream - You can easily build
automated workflows that run on regular times or intervals. Some examples of
things that you can build using the Schedule API include:

  • Automated data retrieval from a third-party service, like pulling stats from
    your Salesforce account on a set schedule.
  • Uploading new data sets to a database with a predetermined interval.
  • Automatic emails to customers or leads at a certain time of the day.
  • Automating data analysis based on a set schedule.
  • Automatically optimizing social media postings according to a specified
    timeline.
  • Updating webpages at a certain interval with newly available content.
  • Re-running reports on a periodic basis.
  • Refreshing a cache of data at a given frequency.