感情アナライザー API
APIエンドポイント仕様
- エンドポイント パス: /api/1/sentiment-analyzer
- データの種類: JSON & 20/分
- 情報元: テクスチャコンテンツ
- リクエスト制限: 500リクエスト/月
- スクリプトと統合: cURL, JS, Python, Ruby, Php, Node.js, Java, .NET, Rust, Go, Typescript と統合するコード
感情アナライザー API エンドポイントの基本情報
APIエンドポイントパス
必須
コンテンツセンチメントアナライザーAPI
api/1/sentiment-analyzer
Call Method
Required
POST
返されるデータの種類
JSON
Content Sentiment Ratio に関する構造化された JSON データを出力する
利用可能な API 引数とパラメータ
token
必須
BUYFROMLO API トークンを購入します. 無料および有料のサブスクリプション API は両方とも利用できます: /api/1/sentiment-analyzer< /a>, /app/1/sentiment-analyzer のオンサイト APP にもアクセス可能
originalContent
必須
コンテンツを入力します. 英語の最大文字数の上限は 8000 です
language
オプション
コンテンツの言語を入力します. デフォルトは英語です
コンテンツセンチメントアナライザーAPI
api/1/sentiment-analyzer
コードの統合と対応
Python コードサンプル
import requests
apiendpoint = "https://api.buyfromlo.com/api/1/sentiment-analyzer"
## Required Arguments & Parameters ##
token = ""your buyfromlo token""
originalContent = "raw content materials or context for reference"
headers={"Authorization": "Bearer " + token}
## Call the api ##
response = requests.post(apiendpoint, json={"originalContent":originalContent}, headers=headers)
print(response.status_code)
print(response.json())
JSON 応答サンプル
{
"originalContent": " " (string),
"Subjectivity": " " (float),
"Polarity": " " (float)
}