getCashFlowStatementsBulk
Retrieve bulk cash flow statements to analyze operating, investing, and financing activities for multiple companies over specific periods. Supports financial modeling and data-driven decision-making.
Instructions
The Cash Flow Statement Bulk API provides access to detailed cash flow reports for a wide range of companies. This API enables users to retrieve bulk cash flow statement data, helping to analyze companies’ operating, investing, and financing activities over time.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
period | Yes | Period (Q1, Q2, Q3, Q4, FY) | |
year | Yes | Year (e.g., 2023) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"period": {
"description": "Period (Q1, Q2, Q3, Q4, FY)",
"type": "string"
},
"year": {
"description": "Year (e.g., 2023)",
"type": "string"
}
},
"required": [
"year",
"period"
],
"type": "object"
}