Skip to main content

Quarterly Income Statement

Retrieve quarterly income statement data for a specific company.

GET/3.0/company/financials/income/quarterly

Description

This endpoint returns quarterly income statement data including revenue, expenses, profits, and earnings per share for a specific company. Provides comprehensive view of company's profitability and operational performance 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-08-28T10:37:32.056Z",
"interval": "quarterly",
"consolidated": false,
"type": "income",
"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": "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 Income Statement

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

Use Cases

  • Quarterly Performance Analysis: Track quarterly revenue and profit trends
  • Seasonal Analysis: Identify seasonal patterns in financial performance
  • Earnings Analysis: Analyze quarterly earnings and EPS trends
  • Forecasting: Use quarterly data for financial forecasting
  • Comparative Analysis: Compare quarterly performance across periods
  • Quarterly Reports: Obtain data for quarterly investor communications
  • Earnings Season: Monitor and analyze earnings announcements