#
# # # # #

Content Sentiment Analyzer API

API:Marketing

US$5US$8

  • Generate content sentiment data ratio from any form of text content. Social sentiment data include 5 main metrics of sentiment data, which is respectively polarity, subjectivity, negative, positive and neutral. Token supports both API and onsite app with respectively paid and free version.

  • The API is for personal use. For more details regarding API usage obligation & liability, please read Legal Terms of Service & Condition

1 Mins Video Google Sheets Demo


Content Sentiment Analyzer API Applied to Use in Google Sheets.

Features

  • Generate content sentiment data ratio from any form of text content.
  • Social sentiment data include 5 main metrics of sentiment data, which is respectively polarity, subjectivity, negative, positive and neutral.
  • Sentiment dataset is refreshed everyday
  • Token supports both API and onsite app with respectively paid and free version

API Endpoint Specifications

  • Endpoint Path: /api/1/sentiment-analyzer
  • Type of Data: JSON & 20 requests per min
  • Data Source: Texture Content
  • Request Limit: 500 requests/month
  • Script & Integration: Code to integrate with cURL, JS, Python, Ruby, Php, Node.js, Java, .NET, Rust, Go, Typescript

4.5 (Overall)

  • 5 stars - 38
  • 4 stars - 10
  • 3 stars - 3
  • 2 stars - 1
  • 1 star - 0

Latest Reviews

Content Sentiment Analyzer API Endpoint Basic Info

API Endpoint Path

required

Content Sentiment Analyzer API

https://www.buyfromlo.com/api/1/sentiment-analyzer


Call Method

Required

POST

Type of Data Return

JSON

JSON output structured data for Content Sentiment Ratio Data


Available API Arguments & Parameters

Token

required

BUYFROMLO API token. Free and subscription APIs are both available on www.buyfromlo.com/apis, and accessible to on-site APP on www.buyfromlo.com/app as well

originalContent

required

Input a piece of content. The max.character ceiling in English is 2,000



Content Sentiment Analyzer API

https://www.buyfromlo.com/api/1/sentiment-analyzer


Code Integration and Response

Python Code Sample


import requests

apiendpoint = "https://www.buyfromlo.com/api/1/sentiment-analyzer"

## Required Arguments & Parameters ##
token = ""your buyfromlo token""
originalContent = "raw content materials or context for reference"

## Call the api ##
response = requests.post(apiendpoint + "?token=" + token, json={"originalContent":originalContent})
print(response.status)
print(response.json())
                        

JSON Response Sample


{
    "originalContent": "",
    "Subjectivity": "",
    "Polarity": ""
}