get_company_directors
Retrieve board directors for companies in the Spanish stock exchange using company ID to analyze corporate governance and relationships.
Instructions
Get board directors for a specific company
Input Schema
Name | Required | Description | Default |
---|---|---|---|
companyId | Yes | Company ID or use get_company_by_symbol first to get ID |
Input Schema (JSON Schema)
{
"properties": {
"companyId": {
"description": "Company ID or use get_company_by_symbol first to get ID",
"type": "string"
}
},
"required": [
"companyId"
],
"type": "object"
}