get_financial_statements
Retrieve financial statements including income, balance, or cash flow for a specified ticker. Choose frequency: quarterly or annual reports.
Instructions
Get financial statements. Types: income, balance, cash. Frequency: quarterly, annual.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
frequency | No | quarterly | |
statement_type | No | income | |
ticker | Yes |
Input Schema (JSON Schema)
{
"properties": {
"frequency": {
"default": "quarterly",
"enum": [
"quarterly",
"annual"
],
"title": "Frequency",
"type": "string"
},
"statement_type": {
"default": "income",
"enum": [
"income",
"balance",
"cash"
],
"title": "Statement Type",
"type": "string"
},
"ticker": {
"title": "Ticker",
"type": "string"
}
},
"required": [
"ticker"
],
"title": "get_financial_statementsArguments",
"type": "object"
}