Skip to main content
GET
/
v1
/
companies
/
identifiers
All NGX ticker symbols
curl --request GET \
  --url https://api.ngnmarket.com/v1/companies/identifiers \
  --header 'Authorization: Bearer <token>'
{ "success": true, "data": { "data": [ { "id": 5, "symbol": "ACCESS", "name": "Access Holdings Plc", "international_sec_in": "NGACCESSB0007" }, { "id": 7, "symbol": "AIRTELAFRI", "name": "Airtel Africa Plc", "international_sec_in": "NGAIRTELAF06" }, { "id": 12, "symbol": "DANGCEM", "name": "Dangote Cement Plc", "international_sec_in": "NGDANGCEM0009" }, { "id": 21, "symbol": "GTCO", "name": "Guaranty Trust Holding Co", "international_sec_in": "NGGTCO000001" }, { "id": 48, "symbol": "ZENITHBANK", "name": "Zenith Bank Plc", "international_sec_in": "NGZENITHBN05" } ], "count": 150 }, "meta": { "plan": "free", "calls_used": 43, "calls_remaining": 9957, "reset_at": "2026-05-01T00:00:00.000Z" } }
The identifiers endpoint returns every company listed on the Nigerian Exchange in a single lightweight response, no pagination needed. Each entry includes the ticker symbol, company name, and international securities identifier. This is the most efficient way to populate a company picker, validate user input, or seed a local lookup table.

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.

Response

Identifiers retrieved successfully.

success
boolean
required
meta
object

Quota and plan metadata included on every authenticated response.

data
object