get_income_statement
Retrieve income statement data for companies by specifying a stock symbol and the number of most recent records needed for financial analysis and reporting.
Instructions
Get company income statement data.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
recent_n | No | Number of most recent records to return | |
symbol | Yes | Stock symbol/ticker (e.g. '000001') |
Input Schema (JSON Schema)
{
"properties": {
"recent_n": {
"anyOf": [
{
"minimum": 1,
"type": "integer"
},
{
"type": "null"
}
],
"default": 10,
"description": "Number of most recent records to return",
"title": "Recent N"
},
"symbol": {
"description": "Stock symbol/ticker (e.g. '000001')",
"title": "Symbol",
"type": "string"
}
},
"required": [
"symbol"
],
"type": "object"
}