Disclosure categories by company
curl --request GET \
--url https://api.ngnmarket.com/v1/companies/{symbol}/disclosures/categories \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.ngnmarket.com/v1/companies/{symbol}/disclosures/categories"
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}/disclosures/categories', 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}/disclosures/categories",
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}/disclosures/categories"
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}/disclosures/categories")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.ngnmarket.com/v1/companies/{symbol}/disclosures/categories")
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": {
"symbol": "UCAP",
"data": [
{
"id": "dividends",
"label": "Dividends",
"count": 11
},
{
"id": "director_dealings",
"label": "Director dealings",
"count": 688
},
{
"id": "financial_results",
"label": "Financial results",
"count": 75
},
{
"id": "agm",
"label": "AGM",
"count": 17
},
{
"id": "egm",
"label": "EGM & court orders",
"count": 4
},
{
"id": "board_meetings",
"label": "Board meetings",
"count": 39
},
{
"id": "rights_bonus",
"label": "Rights & bonus issues",
"count": 0
},
{
"id": "share_buyback",
"label": "Share buybacks",
"count": 0
},
{
"id": "debt_issuance",
"label": "Bonds & notes",
"count": 3
},
{
"id": "mergers_acquisitions",
"label": "M&A",
"count": 1
},
{
"id": "governance",
"label": "Governance",
"count": 15
},
{
"id": "earnings_forecast",
"label": "Earnings forecasts",
"count": 0
},
{
"id": "regulatory",
"label": "Regulatory events",
"count": 0
},
{
"id": "other",
"label": "Other",
"count": 32
}
]
},
"meta": {
"plan": "free",
"calls_used": 153,
"calls_remaining": 2847,
"reset_at": "2026-10-01T00:00:00.000Z"
}
}Company Endpoints
Company Disclosure Categories
Disclosure category counts scoped to a single NGX-listed company.
GET
/
companies
/
{symbol}
/
disclosures
/
categories
Disclosure categories by company
curl --request GET \
--url https://api.ngnmarket.com/v1/companies/{symbol}/disclosures/categories \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.ngnmarket.com/v1/companies/{symbol}/disclosures/categories"
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}/disclosures/categories', 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}/disclosures/categories",
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}/disclosures/categories"
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}/disclosures/categories")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.ngnmarket.com/v1/companies/{symbol}/disclosures/categories")
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": {
"symbol": "UCAP",
"data": [
{
"id": "dividends",
"label": "Dividends",
"count": 11
},
{
"id": "director_dealings",
"label": "Director dealings",
"count": 688
},
{
"id": "financial_results",
"label": "Financial results",
"count": 75
},
{
"id": "agm",
"label": "AGM",
"count": 17
},
{
"id": "egm",
"label": "EGM & court orders",
"count": 4
},
{
"id": "board_meetings",
"label": "Board meetings",
"count": 39
},
{
"id": "rights_bonus",
"label": "Rights & bonus issues",
"count": 0
},
{
"id": "share_buyback",
"label": "Share buybacks",
"count": 0
},
{
"id": "debt_issuance",
"label": "Bonds & notes",
"count": 3
},
{
"id": "mergers_acquisitions",
"label": "M&A",
"count": 1
},
{
"id": "governance",
"label": "Governance",
"count": 15
},
{
"id": "earnings_forecast",
"label": "Earnings forecasts",
"count": 0
},
{
"id": "regulatory",
"label": "Regulatory events",
"count": 0
},
{
"id": "other",
"label": "Other",
"count": 32
}
]
},
"meta": {
"plan": "free",
"calls_used": 153,
"calls_remaining": 2847,
"reset_at": "2026-10-01T00:00:00.000Z"
}
}Returns disclosure category counts scoped to one company. Same shape as
Pass the
GET /disclosures/categories, with symbol set to the requested ticker. A category with no matching rows for this company still appears, with count: 0.
curl "https://api.ngnmarket.com/v1/companies/UCAP/disclosures/categories" \
-H "Authorization: Bearer ngm_live_YOUR_KEY"
const symbol = 'UCAP';
const res = await fetch(
`https://api.ngnmarket.com/v1/companies/${symbol}/disclosures/categories`,
{ headers: { Authorization: 'Bearer ngm_live_YOUR_KEY' } }
);
const { data } = await res.json();
import requests
symbol = 'UCAP'
res = requests.get(
f'https://api.ngnmarket.com/v1/companies/{symbol}/disclosures/categories',
headers={'Authorization': 'Bearer ngm_live_YOUR_KEY'},
)
categories = res.json()['data']['data']
id values from this response as the category filter on GET /companies/{symbol}/disclosures.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:
"UCAP"