Word トークナイザー API

APIエンドポイント仕様

  • エンドポイント パス: /api/1/word-tokenizer
  • データの種類: JSON & 20/分
  • 情報元: LOから購入
  • リクエスト制限: 500リクエスト/月
  • スクリプトと統合: cURL, JS, Python, Ruby, Php, Node.js, Java, .NET, Rust, Go, Typescript と統合するコード
Word トークナイザー API エンドポイントの基本情報

APIエンドポイントパス

必須

コンテンツ Word トークナイザー API

api/1/word-tokenizer


Call Method

Required

POST

返されるデータの種類

JSON

トークン化されたコンテンツの構造化された JSON データを出力する


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

token

必須

BUYFROMLO API トークンを購入します. 有料サブスクリプション API が利用可能です: /api/1/word-tokenizer. /app/1/word-tokenizer のサイト APP も同様

originalContent

必須

英語のオリジナルコンテンツを提出してください.


language

オプション

言語を入力します. デフォルト値は英語です


コンテンツ Word トークナイザー API

api/1/word-tokenizer


コードの統合と対応

Python コードサンプル


import requests

apiendpoint = "https://api.buyfromlo.com/api/1/word-tokenizer"

## Required Arguments & Parameters ##

token = "your buyfromlo token"
originalContent = ""

headers={"Authorization": "Bearer " + token}

## Call the api ##
response = requests.post(
    apiendpoint, 
    json={
            "originalContent":originalContent
        }, headers=headers
    )
print(response.status_code)
print(response.json())
                        

JSON 応答サンプル


{
    "Tokenised content"
}