getIncomeStatementTTM
Retrieve up-to-date trailing twelve-month (TTM) income statements for public companies, private firms, and ETFs to analyze profitability, compare competitors, and identify financial trends.
Instructions
Access real-time income statement data for public companies, private companies, and ETFs with the FMP Real-Time Income Statements API. Track profitability, compare competitors, and identify business trends with up-to-date financial data.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Limit on number of results (default: 100, max: 1000) | |
symbol | Yes | Stock symbol |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"limit": {
"description": "Limit on number of results (default: 100, max: 1000)",
"type": "number"
},
"symbol": {
"description": "Stock symbol",
"type": "string"
}
},
"required": [
"symbol"
],
"type": "object"
}