getCashFlowStatement
Analyze a company's cash flow activities from operations, investments, and financing using the API to assess financial health and sustainability. Input stock symbol and optional period or limit.
Instructions
Gain insights into a company's cash flow activities with the Cash Flow Statements API. Analyze cash generated and used from operations, investments, and financing activities to evaluate the financial health and sustainability of a business.
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"
}