Skip to main content
GET
/
v1
/
companies
/
{symbol}
/
financials
Financial statements
curl --request GET \
  --url https://api.ngnmarket.com/v1/companies/{symbol}/financials \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "data": [
      {
        "period": "2025-12-31",
        "periodType": "annual",
        "year": 2025,
        "quarter": "FY",
        "periodLabel": "FY 2025",
        "currency": "NGN",
        "incomeStatement": {
          "revenue": 2341000000000,
          "costOfSales": 1120000000000,
          "grossProfit": 1221000000000,
          "operatingExpenses": 310000000000,
          "operatingIncome": 911000000000,
          "interestIncome": 14000000000,
          "interestExpense": 85000000000,
          "pretaxIncome": 840000000000,
          "incomeTaxExpense": 210000000000,
          "netIncome": 630000000000,
          "epsBasic": 36.97,
          "epsDiluted": 36.97
        },
        "balanceSheet": {
          "cashAndEquivalents": 285000000000,
          "shortTermInvestments": 40000000000,
          "receivables": 95000000000,
          "inventory": 210000000000,
          "currentAssets": 680000000000,
          "ppeNet": 1850000000000,
          "intangibleAssets": 12000000000,
          "totalAssets": 2650000000000,
          "accountsPayable": 180000000000,
          "shortTermDebt": 120000000000,
          "currentLiabilities": 420000000000,
          "longTermDebt": 680000000000,
          "totalLiabilities": 1230000000000,
          "shareCapital": 170000000000,
          "retainedEarnings": 1250000000000,
          "shareholdersEquity": 1420000000000,
          "totalLiabilitiesAndEquity": 2650000000000
        },
        "cashFlow": {
          "netCashOperating": 780000000000,
          "netCashInvesting": -310000000000,
          "netCashFinancing": -220000000000,
          "capitalExpenditure": -280000000000,
          "freeCashFlow": 500000000000,
          "dividendsPaid": -206000000000
        },
        "ratios": {
          "grossMargin": 52.16,
          "operatingMargin": 38.91,
          "netProfitMargin": 26.91,
          "returnOnEquity": 44.37,
          "returnOnAssets": 23.77,
          "currentRatio": 1.62,
          "debtToEquity": 0.56,
          "interestCoverage": 10.72,
          "freeCashFlowMargin": 21.36,
          "bvps": 83.33,
          "fcfps": 29.34,
          "revenuePerShare": 137.38
        }
      }
    ],
    "count": 1
  },
  "meta": {
    "plan": "business",
    "calls_used": 1204,
    "calls_remaining": 1998796,
    "reset_at": "2026-05-01T00:00:00.000Z"
  }
}
The financials endpoint returns the complete set of financial statements filed by a company on the NGX for every reporting period available. This includes the income statement, balance sheet, cash flow statement, and computed financial ratios. Results are ordered from most recent to oldest, with annual full-year statements appearing before quarterly results for the same year. This endpoint requires a Business plan or higher.

Authorizations

Authorization
string
header
required

Pass your API key as a Bearer token: Authorization: Bearer ngm_live_YOUR_KEY. Generate keys at ngnmarket.com/dashboard/developer.

Path Parameters

symbol
string
required

NGX ticker symbol (e.g. GTCO). Case-insensitive.

Example:

"DANGCEM"

Response

Financial statements retrieved successfully.

success
boolean
required
meta
object

Quota and plan metadata included on every authenticated response.

data
object