Skip to main content

Quarterly Cashflow Statement

Retrieve quarterly cash flow statement data for a specific company covering recent 5 years.

GET/3.0/company/financials/cashflow/quarterly

Description

This endpoint returns quarterly cash flow statement data including operating, investing, and financing cash flows for a specific company. Provides detailed breakdown of cash movements, sources, and uses on a quarterly basis covering recent 5-year period.

Request

Authentication

  • Type: Bearer Token
  • Required: Yes

Parameters

NameTypeRequiredDescriptionExample
symbolstringYesStock symbol/ticker code for the companyLUCK

Response

Success Response (200)

{
"status": "ok",
"message": "",
"data": {
"symbol": "DGKC",
"created": "2025-08-28T10:37:32.056Z",
"interval": "quarterly",
"consolidated": false,
"type": "cash_flow",
"periods": [
{
"year": "2025",
"quarter": "Q4",
"period_end": "2025-06-30",
"year_end_diff": 3
},
{
"year": "2025",
"quarter": "Q3",
"period_end": "2025-03-31",
"year_end_diff": 3
},
],
"fields": [
{
"label": "Sales",
"values": [
16776337,
18125324,
],
"is_heading": false,
"key": "sales"
},
{
"label": "Cost of sales",
"values": [
-11437686,
-13403767,
],
"is_heading": false,
"key": "cos"
},
{
"label": "Gross profit",
"values": [
5338651,
4721557,
],
"is_heading": false,
"key": "gross_profit"
},
{
"label": "Administrative Expenses",
"values": [
-345946,
-318265,
],
"is_heading": false,
"key": "adex"
},
{
"label": "Distribution Cost",
"values": [
-937000,
-981282,
],
"is_heading": false,
"key": "disc"
},
{
"label": "Other operating expenses",
"values": [
-288604,
-194574,
],
"is_heading": false,
"key": "other_op_exp"
},
{
"label": "Other Income",
"values": [
1125233,
989760,
],
"is_heading": false,
"key": "other_income"
},
{
"label": "Impairment on investments",
"values": [
-77202,
null,
],
"is_heading": false,
"key": null
},
{
"label": "Profit from operations",
"values": [
4815132,
4217196,
],
"is_heading": false,
"key": "op_profit"
},
{
"label": "Finance cost",
"values": [
-570775,
-660078,
],
"is_heading": false,
"key": "fin_cost"
},
{
"label": "Profit before taxation",
"values": [
4244357,
3557118,
],
"is_heading": false,
"key": "pbt"
},
{
"label": "Taxation",
"values": [
-1088259,
-1561402,
],
"is_heading": false,
"key": "tax"
},
{
"label": "Profit after taxation",
"values": [
3156098,
1995716,
],
"is_heading": false,
"key": "pat"
},
{
"label": "EPS",
"values": [
7.190000000000001,
4.56,
],
"is_heading": false,
"key": "eps"
}
]
}
}

Response Fields

FieldTypeDescription
symbolstringCompany stock symbol
createdstringData creation timestamp (ISO 8601 format)
intervalstringReporting interval (quarterly, annual)
consolidatedbooleanWhether financials are consolidated
typestringType of financial statement (income, balance, cash_flow)
periodsarrayArray of reporting periods View
fieldsarrayArray of financial line items View

Periods Array Fields

FieldTypeDescription
yearstringFiscal year
quarterstringQuarter indicator (Q1, Q2, Q3, Q4)
period_endstringPeriod end date (YYYY-MM-DD)
year_end_diffintegerMonth difference from year end

Fields Array Fields

FieldTypeDescription
labelstringLine item label/description
valuesarrayArray of values corresponding to each period
is_headingbooleanWhether this is a section heading
keystringMachine-readable key for the line item

Error Responses

For detailed Common Error responses, see the Error Handling.

Missing Symbol (200)

{
"status": "error",
"message": "no `symbol` provided"
}

Examples

Get Quarterly Cash Flow Statement

curl -X GET "https://csapis.com/3.0/company/financials/cashflow/quarterly?symbol=LUCK" \
-H "Authorization: Bearer YOUR_API_TOKEN"

Use Cases

  • Quarterly Cash Flow Analysis: Track cash generation on a quarterly basis
  • Seasonality Detection: Identify seasonal patterns in cash flows
  • Operating Performance: Monitor operating cash flow trends by quarter
  • Capital Allocation: Track quarterly investment and financing activities
  • Working Capital Management: Assess quarterly working capital changes
  • Quarterly Reports: Use for quarterly investor communications
  • Dividend Assessment: Evaluate quarterly cash available for distributions