Disclosure categories
curl --request GET \
--url https://api.ngnmarket.com/v1/disclosures/categories \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.ngnmarket.com/v1/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/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/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/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/disclosures/categories")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.ngnmarket.com/v1/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": null,
"data": [
{
"id": "dividends",
"label": "Dividends",
"count": 685
},
{
"id": "director_dealings",
"label": "Director dealings",
"count": 3205
},
{
"id": "financial_results",
"label": "Financial results",
"count": 9791
},
{
"id": "agm",
"label": "AGM",
"count": 1917
},
{
"id": "egm",
"label": "EGM & court orders",
"count": 289
},
{
"id": "board_meetings",
"label": "Board meetings",
"count": 3984
},
{
"id": "rights_bonus",
"label": "Rights & bonus issues",
"count": 89
},
{
"id": "share_buyback",
"label": "Share buybacks",
"count": 304
},
{
"id": "debt_issuance",
"label": "Bonds & notes",
"count": 96
},
{
"id": "mergers_acquisitions",
"label": "M&A",
"count": 178
},
{
"id": "governance",
"label": "Governance",
"count": 1560
},
{
"id": "earnings_forecast",
"label": "Earnings forecasts",
"count": 785
},
{
"id": "regulatory",
"label": "Regulatory events",
"count": 20
},
{
"id": "other",
"label": "Other",
"count": 3940
}
]
},
"meta": {
"plan": "free",
"calls_used": 152,
"calls_remaining": 2848,
"reset_at": "2026-10-01T00:00:00.000Z"
}
}
Disclosure Endpoints
Disclosure Categories
The fixed set of disclosure categories with a document count for each.
GET
/
disclosures
/
categories
Disclosure categories
curl --request GET \
--url https://api.ngnmarket.com/v1/disclosures/categories \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.ngnmarket.com/v1/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/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/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/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/disclosures/categories")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.ngnmarket.com/v1/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": null,
"data": [
{
"id": "dividends",
"label": "Dividends",
"count": 685
},
{
"id": "director_dealings",
"label": "Director dealings",
"count": 3205
},
{
"id": "financial_results",
"label": "Financial results",
"count": 9791
},
{
"id": "agm",
"label": "AGM",
"count": 1917
},
{
"id": "egm",
"label": "EGM & court orders",
"count": 289
},
{
"id": "board_meetings",
"label": "Board meetings",
"count": 3984
},
{
"id": "rights_bonus",
"label": "Rights & bonus issues",
"count": 89
},
{
"id": "share_buyback",
"label": "Share buybacks",
"count": 304
},
{
"id": "debt_issuance",
"label": "Bonds & notes",
"count": 96
},
{
"id": "mergers_acquisitions",
"label": "M&A",
"count": 178
},
{
"id": "governance",
"label": "Governance",
"count": 1560
},
{
"id": "earnings_forecast",
"label": "Earnings forecasts",
"count": 785
},
{
"id": "regulatory",
"label": "Regulatory events",
"count": 20
},
{
"id": "other",
"label": "Other",
"count": 3940
}
]
},
"meta": {
"plan": "free",
"calls_used": 152,
"calls_remaining": 2848,
"reset_at": "2026-10-01T00:00:00.000Z"
}
}
Returns the fixed set of disclosure categories with a document count for each. A category with no matching rows yet still appears, with
For counts scoped to one company instead of the whole market, use
count: 0, so a filter UI built from this list stays stable.
category is a coarser, curated grouping over the raw submission_type values returned by GET /disclosures/types. Use these id values as the category filter on GET /disclosures.
Cached 5 minutes.
curl "https://api.ngnmarket.com/v1/disclosures/categories" \
-H "Authorization: Bearer ngm_live_YOUR_KEY"
const res = await fetch('https://api.ngnmarket.com/v1/disclosures/categories', {
headers: { Authorization: 'Bearer ngm_live_YOUR_KEY' },
});
const { data } = await res.json();
// data.data => [{ id: "director_dealings", label: "Director dealings", count: 3205 }, ...]
import requests
res = requests.get(
'https://api.ngnmarket.com/v1/disclosures/categories',
headers={'Authorization': 'Bearer ngm_live_YOUR_KEY'},
)
categories = res.json()['data']['data']
GET /companies/{symbol}/disclosures/categories.Authorizations
Pass your API key as a Bearer token: Authorization: Bearer ngm_live_YOUR_KEY.
Generate keys at ngnmarket.com/dashboard/developer.