get_company_profile
Retrieve basic company information as JSON data using stock codes from Taiwan Stock Exchange listed companies.
Instructions
Obtain the basic information of a listed company as a JSON string object based on its stock code.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| code | Yes |
Input Schema (JSON Schema)
{
"properties": {
"code": {
"title": "Code",
"type": "string"
}
},
"required": [
"code"
],
"type": "object"
}