Financial statements
curl --request GET \
--url https://api.ngnmarket.com/v1/companies/{symbol}/financials \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.ngnmarket.com/v1/companies/{symbol}/financials"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.ngnmarket.com/v1/companies/{symbol}/financials', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.ngnmarket.com/v1/companies/{symbol}/financials",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.ngnmarket.com/v1/companies/{symbol}/financials"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.ngnmarket.com/v1/companies/{symbol}/financials")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.ngnmarket.com/v1/companies/{symbol}/financials")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"success": true,
"data": {
"data": [
{
"period": "2025-12-31",
"period_type": "annual",
"year": 2025,
"quarter": "FY",
"period_label": "FY 2025",
"currency": "NGN",
"income_statement": {
"revenue": 2341000000000,
"cost_of_sales": 1120000000000,
"gross_profit": 1221000000000,
"operating_expenses": 310000000000,
"operating_income": 911000000000,
"interest_income": 14000000000,
"interest_expense": 85000000000,
"pretax_income": 840000000000,
"income_tax_expense": 210000000000,
"net_income": 630000000000,
"eps_basic": 36.97,
"eps_diluted": 36.97
},
"balance_sheet": {
"cash_and_equivalents": 285000000000,
"short_term_investments": 40000000000,
"receivables": 95000000000,
"inventory": 210000000000,
"current_assets": 680000000000,
"ppe_net": 1850000000000,
"intangible_assets": 12000000000,
"total_assets": 2650000000000,
"accounts_payable": 180000000000,
"short_term_debt": 120000000000,
"current_liabilities": 420000000000,
"long_term_debt": 680000000000,
"total_liabilities": 1230000000000,
"share_capital": 170000000000,
"retained_earnings": 1250000000000,
"shareholders_equity": 1420000000000,
"total_liabilities_and_equity": 2650000000000
},
"cash_flow": {
"net_cash_operating": 780000000000,
"net_cash_investing": -310000000000,
"net_cash_financing": -220000000000,
"capital_expenditure": -280000000000,
"free_cash_flow": 500000000000,
"dividends_paid": -206000000000
},
"ratios": {
"gross_margin": 52.16,
"operating_margin": 38.91,
"net_profit_margin": 26.91,
"return_on_equity": 44.37,
"return_on_assets": 23.77,
"current_ratio": 1.62,
"debt_to_equity": 0.56,
"interest_coverage": 10.72,
"free_cash_flow_margin": 21.36,
"bvps": 83.33,
"fcfps": 29.34,
"revenue_per_share": 137.38
}
}
],
"count": 1
},
"meta": {
"plan": "business",
"calls_used": 1204,
"calls_remaining": 1998796,
"reset_at": "2026-05-01T00:00:00.000Z"
}
}Financial statements
Returns the complete set of financial statements filed by a company (income statement, balance sheet, cash flow statement, and computed financial ratios) for every reporting period available. Results are ordered from most recent to oldest.
Plan required: Business
GET
/
companies
/
{symbol}
/
financials
Financial statements
curl --request GET \
--url https://api.ngnmarket.com/v1/companies/{symbol}/financials \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.ngnmarket.com/v1/companies/{symbol}/financials"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.ngnmarket.com/v1/companies/{symbol}/financials', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.ngnmarket.com/v1/companies/{symbol}/financials",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.ngnmarket.com/v1/companies/{symbol}/financials"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.ngnmarket.com/v1/companies/{symbol}/financials")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.ngnmarket.com/v1/companies/{symbol}/financials")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"success": true,
"data": {
"data": [
{
"period": "2025-12-31",
"period_type": "annual",
"year": 2025,
"quarter": "FY",
"period_label": "FY 2025",
"currency": "NGN",
"income_statement": {
"revenue": 2341000000000,
"cost_of_sales": 1120000000000,
"gross_profit": 1221000000000,
"operating_expenses": 310000000000,
"operating_income": 911000000000,
"interest_income": 14000000000,
"interest_expense": 85000000000,
"pretax_income": 840000000000,
"income_tax_expense": 210000000000,
"net_income": 630000000000,
"eps_basic": 36.97,
"eps_diluted": 36.97
},
"balance_sheet": {
"cash_and_equivalents": 285000000000,
"short_term_investments": 40000000000,
"receivables": 95000000000,
"inventory": 210000000000,
"current_assets": 680000000000,
"ppe_net": 1850000000000,
"intangible_assets": 12000000000,
"total_assets": 2650000000000,
"accounts_payable": 180000000000,
"short_term_debt": 120000000000,
"current_liabilities": 420000000000,
"long_term_debt": 680000000000,
"total_liabilities": 1230000000000,
"share_capital": 170000000000,
"retained_earnings": 1250000000000,
"shareholders_equity": 1420000000000,
"total_liabilities_and_equity": 2650000000000
},
"cash_flow": {
"net_cash_operating": 780000000000,
"net_cash_investing": -310000000000,
"net_cash_financing": -220000000000,
"capital_expenditure": -280000000000,
"free_cash_flow": 500000000000,
"dividends_paid": -206000000000
},
"ratios": {
"gross_margin": 52.16,
"operating_margin": 38.91,
"net_profit_margin": 26.91,
"return_on_equity": 44.37,
"return_on_assets": 23.77,
"current_ratio": 1.62,
"debt_to_equity": 0.56,
"interest_coverage": 10.72,
"free_cash_flow_margin": 21.36,
"bvps": 83.33,
"fcfps": 29.34,
"revenue_per_share": 137.38
}
}
],
"count": 1
},
"meta": {
"plan": "business",
"calls_used": 1204,
"calls_remaining": 1998796,
"reset_at": "2026-05-01T00:00:00.000Z"
}
}Authorizations
Pass your API key as a Bearer token: Authorization: Bearer ngm_live_YOUR_KEY.
Generate keys at ngnmarket.com/dashboard/developer.
Path Parameters
NGX ticker symbol (e.g. GTCO). Case-insensitive.
Example:
"DANGCEM"
Query Parameters
Filter by reporting period type.
Available options:
annual, quarterly Filter by calendar year (e.g. 2025).
Example:
2025
Maximum number of periods to return (1–100).
Required range:
1 <= x <= 100⌘I