get_executive_info
Retrieve detailed executive information or compensation data for companies using Yahoo Finance data. Input a company symbol and specify the type of data needed, such as executive profiles, compensation details, or benchmarks, to access precise insights.
Instructions
获取公司高管信息或薪酬数据。
参数说明: info_type: str executives、compensation 或 benchmark symbol: str 当类型为 executives 或 compensation 时必填
Input Schema
Name | Required | Description | Default |
---|---|---|---|
info_type | Yes | ||
symbol | No |
Input Schema (JSON Schema)
{
"properties": {
"info_type": {
"title": "Info Type",
"type": "string"
},
"symbol": {
"default": "",
"title": "Symbol",
"type": "string"
}
},
"required": [
"info_type"
],
"title": "get_executive_infoArguments",
"type": "object"
}