Easy Text ML
Sentiment analysis, TLDR summarization, automatic hashtagging/keyword extraction, text extraction+boilerplate removal from HTML. More is coming.
Easy Text ML endpoints
| Method | Endpoint | Description |
|---|---|---|
| Extract Main Text from HTML | ||
| POST |
Extract text from a HTML string /web2text/string |
Detect the main article body and return this relavant part as simple pure text. |
| GET |
Extract text from a URL /web2text/link |
Detect the main article body and return this relavant part as simple pure text. |
| Sentiment Analysis | ||
| POST |
Estimate sentiment score from HTML document /sentiment/html/string |
Estimate the sentiment score from a given HTML document. The document's HTML is first sanitised and turned into pure text. This pure text is used to estimate a sentiment score.… |
| GET |
Estimate sentiment score from web page link /sentiment/html/link |
Estimate the sentiment score from a link to a web page. The page's HTML is first sanitised and turned into pure text. This pure text is used to estimate a sentiment score. The… |
| POST |
Estimate sentiment score from pure text /sentiment/text/string |
Estimate the sentiment score from a given a piece of pure text. The score is estimated using a dictionary-based approach while taken into account valence shifters. Only English… |
| TLDR Summarization | ||
| POST |
Summarize HTML from a string /summarize/html/string |
Extract the most important sentences from an HTML string. The POST request accepts a JSON body which has two keys: `max_sentences` and `htmlstring`. `max_sentences` is the number… |
| GET |
Summarize web page from a link /summarize/html/link |
Extract the most important sentences from a link. |
| POST |
Summarize pure text from a string /summarize/text/string |
Extract the most important sentences from a given text. The text is not parsed as HTML or any format. Should you have an HTML document, please use one of `/summarize/html/*`… |
| Extract Keywords, Auto-hashtag | ||
| POST |
Auto-hashtag HTML document /auto_hashtag/html/string |
Given a piece of HTML, it returns a list of hashtags like `food-industry` or `oil-supply` if it found any. The number of hashtag it returns depend on the text itself. |
| GET |
Auto-hashtag a webpage link /auto_hashtag/html/link |
Given a link to a webpage, it returns a list of hashtags like `food-industry` or `oil-supply` if it found any. The number of hashtag it returns depend on the webpage. |
| POST |
Auto-hashtag pure text /auto_hashtag/text/string |
Given a piece of pure text, it returns a list of hashtags like `food-industry` or `oil-supply` if it found any. The number of hashtag it returns depend on the text itself. |
Easy Text ML pricing
| Plan | Price | Rate limit | Quotas |
|---|---|---|---|
| BASIC | Free | — |
|
| PRO Recommended | $6 / month | 2500 / hour |
|
| ULTRA | $25 / month | 5000 / hour |
|