Skip to main content
GET
/
v1
/
companies
/
{symbol}
Full company profile
curl --request GET \
  --url https://api.ngnmarket.com/v1/companies/{symbol} \
  --header 'Authorization: Bearer <token>'
{ "success": true, "data": { "id": 12, "symbol": "DANGCEM", "internationalSecIN": "NGDANGCEM0009", "name": "Dangote Cement Plc", "sector": "Industrial Goods", "subSector": "Building Materials", "marketClassification": "Main Board", "sharesOutstanding": 17040507405, "dateListed": "2010-10-26", "dateIncorporated": "1992-11-04", "about": "Dangote Cement is Africa's largest cement producer with operations across Nigeria and 9 other African countries.", "website": "https://dangotecement.com", "email": "[email protected]", "phone": "+234 1 448 2200", "address": "Union Marble House, 1 Alfred Rewane Road, Ikoyi, Lagos", "natureOfBusiness": "Manufacture and sale of cement", "currentPrice": 302.5, "prevClose": 300, "openPrice": 300, "dayHigh": 305, "dayLow": 299.5, "volume": 1284729, "valueTraded": 388431525.25, "marketCap": 5154853514312.5, "priceChange": 2.5, "priceChangePercent": 0.83, "high52wk": 320, "high52wkDate": "2026-01-15", "low52wk": 258, "low52wkDate": "2025-06-03", "ttmEps": 24.12, "latestEquity": 1423900000000, "ttmDividends": -206000000000, "lastUpdated": "2026-04-21T14:30:00.000Z" }, "meta": { "plan": "starter", "calls_used": 4821, "calls_remaining": 95179, "reset_at": "2026-05-01T00:00:00.000Z" } }
The company detail endpoint returns everything you need to build a comprehensive company page: current price data, 52-week range, market cap, trailing earnings per share, sector and sub-sector classification, contact details, and a plain-language description of the company’s business. The ticker symbol lookup is case-insensitive, so dangcem, DANGCEM, and DangCem all resolve to the same company. This endpoint requires a Starter 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. DANGCEM or GTCO). Case-insensitive.

Example:

"DANGCEM"

Response

Company detail retrieved successfully.

success
boolean
required
meta
object

Quota and plan metadata included on every authenticated response.

data
object