getCashFlowStatementGrowth
Analyze and track the growth rate of a company’s cash flow over time using detailed cash flow statement data. Input the stock symbol, period, and limit to generate insights into financial performance trends.
Instructions
Measure the growth rate of a company’s cash flow with the FMP Cashflow Statement Growth API. Determine how quickly a company’s cash flow is increasing or decreasing over time.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Limit on number of results (default: 100, max: 1000) | |
period | No | Period (Q1, Q2, Q3, Q4, or FY) | |
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"
},
"period": {
"description": "Period (Q1, Q2, Q3, Q4, or FY)",
"enum": [
"Q1",
"Q2",
"Q3",
"Q4",
"FY"
],
"type": "string"
},
"symbol": {
"description": "Stock symbol",
"type": "string"
}
},
"required": [
"symbol"
],
"type": "object"
}