All NGX ticker symbols
curl --request GET \
--url https://api.ngnmarket.com/v1/companies/identifiers \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.ngnmarket.com/v1/companies/identifiers"
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/identifiers', 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/identifiers",
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/identifiers"
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/identifiers")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.ngnmarket.com/v1/companies/identifiers")
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": [
{
"id": 5,
"symbol": "ACCESS",
"name": "Access Holdings Plc",
"logo_url": "https://cdn.jsdelivr.net/gh/ngnmarket/ngx-logos/dist/png/ACCESS.png",
"international_sec_id": "NGACCESSB0007"
},
{
"id": 7,
"symbol": "AIRTELAFRI",
"name": "Airtel Africa Plc",
"logo_url": "https://cdn.jsdelivr.net/gh/ngnmarket/ngx-logos/dist/png/AIRTELAFRI.png",
"international_sec_id": "NGAIRTELAF06"
},
{
"id": 12,
"symbol": "DANGCEM",
"name": "Dangote Cement Plc",
"logo_url": "https://cdn.jsdelivr.net/gh/ngnmarket/ngx-logos/dist/png/DANGCEM.png",
"international_sec_id": "NGDANGCEM0009"
},
{
"id": 21,
"symbol": "GTCO",
"name": "Guaranty Trust Holding Co",
"logo_url": "https://cdn.jsdelivr.net/gh/ngnmarket/ngx-logos/dist/png/GTCO.png",
"international_sec_id": "NGGTCO000001"
},
{
"id": 48,
"symbol": "ZENITHBANK",
"name": "Zenith Bank Plc",
"logo_url": "https://cdn.jsdelivr.net/gh/ngnmarket/ngx-logos/dist/png/ZENITHBANK.png",
"international_sec_id": "NGZENITHBN05"
}
],
"count": 150
},
"meta": {
"plan": "free",
"calls_used": 43,
"calls_remaining": 9957,
"reset_at": "2026-05-01T00:00:00.000Z"
}
}Company Endpoints
Ticker Symbols
Retrieve all NGX ticker symbols, names, and ISIN identifiers.
GET
/
companies
/
identifiers
All NGX ticker symbols
curl --request GET \
--url https://api.ngnmarket.com/v1/companies/identifiers \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.ngnmarket.com/v1/companies/identifiers"
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/identifiers', 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/identifiers",
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/identifiers"
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/identifiers")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.ngnmarket.com/v1/companies/identifiers")
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": [
{
"id": 5,
"symbol": "ACCESS",
"name": "Access Holdings Plc",
"logo_url": "https://cdn.jsdelivr.net/gh/ngnmarket/ngx-logos/dist/png/ACCESS.png",
"international_sec_id": "NGACCESSB0007"
},
{
"id": 7,
"symbol": "AIRTELAFRI",
"name": "Airtel Africa Plc",
"logo_url": "https://cdn.jsdelivr.net/gh/ngnmarket/ngx-logos/dist/png/AIRTELAFRI.png",
"international_sec_id": "NGAIRTELAF06"
},
{
"id": 12,
"symbol": "DANGCEM",
"name": "Dangote Cement Plc",
"logo_url": "https://cdn.jsdelivr.net/gh/ngnmarket/ngx-logos/dist/png/DANGCEM.png",
"international_sec_id": "NGDANGCEM0009"
},
{
"id": 21,
"symbol": "GTCO",
"name": "Guaranty Trust Holding Co",
"logo_url": "https://cdn.jsdelivr.net/gh/ngnmarket/ngx-logos/dist/png/GTCO.png",
"international_sec_id": "NGGTCO000001"
},
{
"id": 48,
"symbol": "ZENITHBANK",
"name": "Zenith Bank Plc",
"logo_url": "https://cdn.jsdelivr.net/gh/ngnmarket/ngx-logos/dist/png/ZENITHBANK.png",
"international_sec_id": "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
Pass your API key as a Bearer token: Authorization: Bearer ngm_live_YOUR_KEY.
Generate keys at ngnmarket.com/dashboard/developer.
⌘I