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
| Name | Type | Required | Description | Example |
|---|---|---|---|---|
symbol | string | Yes | Stock symbol/ticker code for the company | UBL |
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
| Field | Type | Description |
|---|---|---|
symbol | string | Company stock symbol |
created | string | Data creation timestamp (ISO 8601 format) |
interval | string | Reporting interval (quarterly, annual) |
consolidated | boolean | Whether financials are consolidated |
type | string | Type of financial statement (income, balance, cash_flow) |
periods | array | Array of reporting periods View |
fields | array | Array of financial line items View |
Periods Array Fields
| Field | Type | Description |
|---|---|---|
year | string | Fiscal year |
quarter | string | Quarter indicator (Q1, Q2, Q3, Q4) |
period_end | string | Period end date (YYYY-MM-DD) |
year_end_diff | integer | Month difference from year end |
Fields Array Fields
| Field | Type | Description |
|---|---|---|
label | string | Line item label/description |
values | array | Array of values corresponding to each period |
is_heading | boolean | Whether this is a section heading |
key | string | Machine-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