get_income_statements
Retrieve income statements for a company by providing its ticker symbol, period, and limit. Access financial data to analyze company performance directly through the Financial Datasets MCP Server.
Instructions
Get income statements for a company.
Args:
ticker: Ticker symbol of the company (e.g. AAPL, GOOGL)
period: Period of the income statement (e.g. annual, quarterly, ttm)
limit: Number of income statements 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_income_statementsArguments",
"type": "object"
}