get_financial_statements
Retrieve financial statements including Profit and Loss, Balance Sheet, and Cash Flow reports for specified companies with customizable date ranges and periodicity.
Instructions
Get standard financial reports (P&L, Balance Sheet, Cash Flow).
Args:
report_type: Type of financial statement
('Profit and Loss Statement', 'Balance Sheet', 'Cash Flow')
company: Company name
from_date: Start date (YYYY-MM-DD format, optional)
to_date: End date (YYYY-MM-DD format, optional)
periodicity: Periodicity (Monthly, Quarterly, Half-Yearly, Yearly)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
company | Yes | ||
from_date | No | ||
periodicity | No | Yearly | |
report_type | Yes | ||
to_date | No |
Input Schema (JSON Schema)
{
"properties": {
"company": {
"title": "Company",
"type": "string"
},
"from_date": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "From Date"
},
"periodicity": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": "Yearly",
"title": "Periodicity"
},
"report_type": {
"title": "Report Type",
"type": "string"
},
"to_date": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "To Date"
}
},
"required": [
"report_type",
"company"
],
"title": "get_financial_statementsArguments",
"type": "object"
}