LangBot Docs
ツール

ツール詳細を取得

指定されたツールの詳細情報を取得します。

GET
/api/v1/tools/{tool_name}

指定されたツールの詳細情報を取得します。

Authorization

BearerAuth
AuthorizationBearer <token>

In: header

Path Parameters

tool_name*string

ツール名

Response Body

application/json

curl -X GET "https://example.com/api/v1/tools/string"
{  "code": 0,  "msg": "ok",  "data": {    "tool": {      "name": "string",      "label": {        "property1": "string",        "property2": "string"      },      "description": {        "property1": "string",        "property2": "string"      },      "icon": "string",      "spec": {        "llm_prompt": "string",        "parameters": {}      }    }  }}