get_balance_sheets
Retrieve balance sheets for companies by specifying ticker symbol, period, and limit. Access financial data from the Financial Datasets MCP Server to analyze company performance.
Instructions
Get balance sheets for a company.
Args:
ticker: Ticker symbol of the company (e.g. AAPL, GOOGL)
period: Period of the balance sheet (e.g. annual, quarterly, ttm)
limit: Number of balance sheets to return (default: 4)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | ||
period | No | annual | |
ticker | Yes |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 4,
"title": "Limit",
"type": "integer"
},
"period": {
"default": "annual",
"title": "Period",
"type": "string"
},
"ticker": {
"title": "Ticker",
"type": "string"
}
},
"required": [
"ticker"
],
"title": "get_balance_sheetsArguments",
"type": "object"
}