Twitterコンテンツセンチメント比率バロメーターAPI
APIエンドポイント仕様
- エンドポイント パス: /api/1/sentiment
- データの種類: JSON & 20/分
- 情報元: ツイッター
- リクエスト制限: 500リクエスト/月
- スクリプトと統合: cURL, JS, Python, Ruby, Php, Node.js, Java, .NET, Rust, Go, Typescript と統合するコード
Twitterコンテンツセンチメント比率バロメーターAPI エンドポイントの基本情報
APIエンドポイントパス
必須
Twitterコンテンツセンチメント比率計算API
api/1/sentiment
Call Method
Required
POST
返されるデータの種類
JSON
Twitterトレンドコンテンツセンチメント比率の構造化JSONデータを出力
利用可能な API 引数とパラメータ
token
必須
BUYFROMLO API トークンを購入します. 有料サブスクリプション API が利用可能です: /api/1/sentiment /app/1/sentiment のオンサイト APP にもアクセス可能
keyword
必須
Twitterのトレンドコンテンツに関連するキーワードクエリを入力します.
language
オプション
en, ja, fr などの言語 ISO-ID を入力します. デフォルトの言語は en です.
Twitterコンテンツセンチメント比率計算API
api/1/sentiment
コードの統合と対応
Python コードサンプル
import requests
apiendpoint = "https://api.buyfromlo.com/api/1/sentiment"
## Required Arguments & Parameters ##
token = ""your buyfromlo token""
keyword = ""Input a keyword""
data={"keyword": keyword}
headers={"Authorization": "Bearer " + token}
## Call the api ##
response = requests.post(apiendpoint, json=data, headers=headers)
print(response.status_code)
print(response.json())
JSON 応答サンプル
{
"Query": " " (string),
"Subjectivity": " " (float),
"Polarity": " " (float),
"Positive": " " (float),
"Negative": " " (float),
"Neutral": " " (float)
}