Skip to main content

Quarterly Balance Sheet

Retrieve quarterly balance sheet data for a specific company.

GET/3.0/company/financials/balance/quarterly

Description

This endpoint returns quarterly balance sheet data including assets, liabilities, and equity for a specific company. Provides comprehensive view of company's financial position and capital structure on a quarterly basis.

Request

Authentication

  • Type: Bearer Token
  • Required: Yes

Parameters

NameTypeRequiredDescriptionExample
symbolstringYesStock symbol/ticker code for the companyUBL

Response

Success Response (200)

{
"status": "ok",
"message": "",
"data": {
"symbol": "DGKC",
"created": "2025-06-24T07:06:08.086Z",
"interval": "quarterly",
"consolidated": false,
"type": "balance",
"periods": [
{
"year": "2025",
"quarter": "Q3",
"period_end": "2025-03-31",
"year_end_diff": 3
},
{
"year": "2025",
"quarter": "Q2",
"period_end": "2024-12-31",
"year_end_diff": 3
}
],
"fields": [
{
"label": "Share capital",
"values": [
4381191,
4381191
],
"is_heading": false,
"key": "share_cap"
},
{
"label": "Reserves",
"values": [
43314645,
41318929
],
"is_heading": false,
"key": "reserves"
},
{
"label": "Accumalated Gain/ Loss",
"values": [
39802096,
39880236
],
"is_heading": false,
"key": "acc_gnl"
},
{
"label": "TOTAL EQUITY",
"values": [
87497932,
85580356
],
"is_heading": false,
"key": "equity"
},
{
"label": "Long term loan",
"values": [
11300553,
13726681
],
"is_heading": false,
"key": "lt_debt"
},
{
"label": "Deferred taxation",
"values": [
15424795,
14927820
],
"is_heading": false,
"key": null
},
{
"label": "TOTAL NON CURRENT LIABILITIES",
"values": [
28566222,
30324458
],
"is_heading": false,
"key": "nc_liabilities"
},
{
"label": "Trade and other payables",
"values": [
14070224,
14818014
],
"is_heading": false,
"key": "trade_pay"
},
{
"label": "Short term borrowings",
"values": [
13127066,
15246981
],
"is_heading": false,
"key": "st_borr"
},
{
"label": "TOTAL CURRENT LIABILITIES",
"values": [
29834505,
34107777
],
"is_heading": false,
"key": "c_liabilities"
},
{
"label": "Total Liabilities",
"values": [
58400727,
64432235
],
"is_heading": false,
"key": "liabilities"
},
{
"label": "TOTAL EQUITY AND LIABILITIES",
"values": [
145898659,
150012591
],
"is_heading": false,
"key": "eq_liab"
},
{
"label": "Property, plant and equipment",
"values": [
78232780,
79018548
],
"is_heading": false,
"key": "prop_plant_eq"
},
{
"label": "Long Term Investments",
"values": [
19581045,
19607202
],
"is_heading": false,
"key": "lt_inv"
},
{
"label": "TOTAL NON CURRENT ASSETS",
"values": [
97895760,
98716085
],
"is_heading": false,
"key": "nc_assets"
}
]
}
}

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 Balance Sheet

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

Use Cases

  • Quarterly Financial Analysis: Track balance sheet changes quarter over quarter
  • Seasonality Analysis: Identify seasonal patterns in assets and liabilities
  • Working Capital Monitoring: Monitor current assets and liabilities trends
  • Interim Reporting: Obtain unaudited interim financial positions
  • Dividend Capacity: Assess ability to pay dividends based on current position
  • Quarterly Trends: Analyze progression toward year-end positions
  • Performance Tracking: Track financial health on a more granular basis