Twitter トレンド投稿スクレイパー API

APIエンドポイント仕様

  • エンドポイント パス: /api/1/twitter-trending-post
  • データの種類: JSON と 10/分
  • 情報元: ツイッター
  • リクエスト制限: 500リクエスト/月
  • スクリプトと統合: cURL, JS, Python, Ruby, Php, Node.js, Java, .NET, Rust, Go, Typescript と統合するコード
Twitter トレンド投稿スクレイパー API エンドポイントの基本情報

APIエンドポイントパス

必須

Twitterトレンドポストスクレーパー

api/1/twitter-trending-post


Call Method

Required

POST

返されるデータの種類

JSON

Twitterトレンド投稿コンテンツの構造化JSONデータを出力


利用可能な API 引数とパラメータ

token

必須

BUYFROMLO API トークンを購入します. サブスクリプション API は /api/1/twitter-trending-post で利用でき, 次からアクセスできます. - サイト APP (/app/1/twitter-trending-post)

keyword

必須

キーワードを入力して関連投稿コンテンツを収集します



Twitterトレンドポストスクレーパー

api/1/twitter-trending-post


コードの統合と対応

Python コードサンプル


import requests

apiendpoint = "https://api.buyfromlo.com/api/1/twitter-trending-post"

## Required Arguments & Parameters ##
token = "your buyfromlo token"
keyword = "Enter a commodity name referring to the options"

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 応答サンプル


{
    "Post Date":"",
    "Post Content":"",
    "Post User ID":"",
    "Post URL":"",
    "api_module": ""
}