Skip to main content

Annual Cashflow Statement

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

GET/3.0/company/financials/cashflow/annual

Description

This endpoint returns annual 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 an annual basis covering the recent 5-year period.

Request

Authentication

  • Type: Bearer Token
  • Required: Yes

Parameters

NameTypeRequiredDescriptionExample
symbolstringYesStock symbol/ticker code for the companyDGKC

Response

Success Response (200)

{
"status": "ok",
"message": "",
"data": {
"symbol": "DGKC",
"created": "2025-08-28T10:37:32.056Z",
"interval": "annual",
"consolidated": false,
"type": "cash_flow",
"periods": [
{
"year": "2025",
"period_end": "2025-06-30",
"year_end_diff": 3
},
{
"year": "2025",
"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
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 Annual Cash Flow Statement

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

Use Cases

  • Cash Flow Analysis: Evaluate company's cash generation ability
  • Liquidity Assessment: Assess operating cash flow vs capital needs
  • Investment Evaluation: Analyze cash available for dividends and debt repayment
  • Quality of Earnings: Compare net income to operating cash flow
  • Capital Allocation: Track capital expenditure and financing activities
  • Cash Flow Trends: Monitor multi-year cash flow patterns
  • Forecasting: Use historical cash flows for future cash flow projections