get_company_balance_sheet
Retrieve balance sheet data for listed companies using stock codes. Automatically adapts financial statement formats based on company industry including general, financial services, securities, and insurance sectors.
Instructions
Obtain balance sheet for a listed company based on its stock code. Automatically detects company industry and uses appropriate financial statement format:
General industry (一般業)
Financial services (金融業)
Securities & futures (證券期貨業)
Financial holding companies (金控業)
Insurance (保險業)
Other industries (異業)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| code | Yes |
Input Schema (JSON Schema)
{
"properties": {
"code": {
"title": "Code",
"type": "string"
}
},
"required": [
"code"
],
"type": "object"
}