Market-wide director dealings
curl --request GET \
--url https://api.ngnmarket.com/v1/insiders \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.ngnmarket.com/v1/insiders"
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/insiders', 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/insiders",
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/insiders"
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/insiders")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.ngnmarket.com/v1/insiders")
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": 280,
"disclosure_id": 2271,
"company_symbol": "FIRSTHOLDCO",
"company_name": "FIRST HOLDCO PLC",
"insider_name": "Calvados Global Services Limited",
"insider_slug": "calvados-global-services-limited",
"insider_position": "Company Related to a Significant Shareholder, Mr. Olufemi Otedola, CON",
"insider_type": "related_party",
"is_corporate_insider": true,
"notification_type": "initial",
"transaction_type": "purchase",
"side": "buy",
"is_open_market": true,
"acquired_or_disposed": "A",
"instrument_type": "ordinary_shares",
"total_volume": 147737699,
"average_price": 140,
"total_value": 20683277860,
"total_value_reported": null,
"currency": "NGN",
"shares_owned_after": null,
"shares_owned_after_source": null,
"letter_date": "2026-08-16",
"transaction_date_from": "2026-08-13",
"transaction_date_to": null,
"date_suspect": false,
"place_of_transaction": "Lagos",
"days_to_file": 4,
"days_letter_to_disclosure": 1,
"tranche_count": 1,
"tranches": [
{
"volume": 147737699,
"price": 140,
"price_low": null,
"price_high": null,
"date": "2026-08-14"
}
],
"is_scanned": false,
"extraction_confidence": "high",
"extraction_notes": "The insider 'Calvados Global Services Limited' is a company related to Mr. Olufemi Otedola, CON, who is Chairman of the Board of Directors. Designated insider_type as 'related_party'.",
"document_url": "https://doclib.ngxgroup.com/Financial_NewsDocs/65_FirstHoldCo_Plc_-_Notification_of_Insider_Dealing_-_Calvados-_August_17_2026.pdf",
"disclosure_title": "FIRST HOLDCO PLC DIRECTORSDEALINGS",
"disclosed_at": "2026-08-17",
"price_at_txn": null,
"current_price": 126
}
],
"pagination": {
"page": 1,
"limit": 1,
"total": 436,
"pages": 436,
"has_next": true,
"has_prev": false
},
"coverage_note": "Director-dealings coverage is partial: not every listed company has filings on record. Use GET /v1/companies to check a symbol's listing status."
},
"meta": {
"plan": "business",
"calls_used": 21,
"calls_remaining": 1999979,
"reset_at": "2026-10-01T00:00:00.000Z"
}
}Insider Endpoints
Market-Wide Director Dealings
Structured director-dealings feed across covered NGX-listed companies.
GET
/
insiders
Market-wide director dealings
curl --request GET \
--url https://api.ngnmarket.com/v1/insiders \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.ngnmarket.com/v1/insiders"
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/insiders', 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/insiders",
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/insiders"
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/insiders")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.ngnmarket.com/v1/insiders")
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": 280,
"disclosure_id": 2271,
"company_symbol": "FIRSTHOLDCO",
"company_name": "FIRST HOLDCO PLC",
"insider_name": "Calvados Global Services Limited",
"insider_slug": "calvados-global-services-limited",
"insider_position": "Company Related to a Significant Shareholder, Mr. Olufemi Otedola, CON",
"insider_type": "related_party",
"is_corporate_insider": true,
"notification_type": "initial",
"transaction_type": "purchase",
"side": "buy",
"is_open_market": true,
"acquired_or_disposed": "A",
"instrument_type": "ordinary_shares",
"total_volume": 147737699,
"average_price": 140,
"total_value": 20683277860,
"total_value_reported": null,
"currency": "NGN",
"shares_owned_after": null,
"shares_owned_after_source": null,
"letter_date": "2026-08-16",
"transaction_date_from": "2026-08-13",
"transaction_date_to": null,
"date_suspect": false,
"place_of_transaction": "Lagos",
"days_to_file": 4,
"days_letter_to_disclosure": 1,
"tranche_count": 1,
"tranches": [
{
"volume": 147737699,
"price": 140,
"price_low": null,
"price_high": null,
"date": "2026-08-14"
}
],
"is_scanned": false,
"extraction_confidence": "high",
"extraction_notes": "The insider 'Calvados Global Services Limited' is a company related to Mr. Olufemi Otedola, CON, who is Chairman of the Board of Directors. Designated insider_type as 'related_party'.",
"document_url": "https://doclib.ngxgroup.com/Financial_NewsDocs/65_FirstHoldCo_Plc_-_Notification_of_Insider_Dealing_-_Calvados-_August_17_2026.pdf",
"disclosure_title": "FIRST HOLDCO PLC DIRECTORSDEALINGS",
"disclosed_at": "2026-08-17",
"price_at_txn": null,
"current_price": 126
}
],
"pagination": {
"page": 1,
"limit": 1,
"total": 436,
"pages": 436,
"has_next": true,
"has_prev": false
},
"coverage_note": "Director-dealings coverage is partial: not every listed company has filings on record. Use GET /v1/companies to check a symbol's listing status."
},
"meta": {
"plan": "business",
"calls_used": 21,
"calls_remaining": 1999979,
"reset_at": "2026-10-01T00:00:00.000Z"
}
}Returns structured director-dealings data across covered NGX-listed companies, sorted newest first. Use this endpoint when you want to scan activity across companies instead of requesting one company at a time.
This endpoint requires a Business plan.
You can filter by symbol, transaction direction, insider type, minimum value, or date range. Coverage is partial because not every listed company has director-dealings filings available in our dataset, and the response includes a
Combine
coverage_note to make this clear.
curl "https://api.ngnmarket.com/v1/insiders?side=buy&minValue=50000000" \
-H "Authorization: Bearer ngm_live_YOUR_KEY"
curl "https://api.ngnmarket.com/v1/insiders?symbol=GTCO" \
-H "Authorization: Bearer ngm_live_YOUR_KEY"
const res = await fetch(
'https://api.ngnmarket.com/v1/insiders?side=buy&minValue=50000000',
{ headers: { Authorization: 'Bearer ngm_live_YOUR_KEY' } }
);
const { data } = await res.json();
import requests
res = requests.get(
'https://api.ngnmarket.com/v1/insiders',
params={'side': 'buy', 'minValue': 50000000},
headers={'Authorization': 'Bearer ngm_live_YOUR_KEY'},
)
data = res.json()['data']
side, insider, minValue, and from/to to build queries like “buys over ₦10m by directors or executives in the last 30 days” without iterating every company yourself.
To find groups of multiple insiders trading the same symbol in the same direction within a given period, use GET /insiders/clusters.Authorizations
Pass your API key as a Bearer token: Authorization: Bearer ngm_live_YOUR_KEY.
Generate keys at ngnmarket.com/dashboard/developer.
Query Parameters
Filter to one company.
Example:
"GTCO"
Match insider name, company name, or ticker.
Filter by transaction direction.
Available options:
buy, sell Filter by insider-type bucket.
Available options:
directors, executives, employees, connected, shareholders, other Example:
"2026-01-01"
Example:
"2026-12-31"
Minimum transaction value in NGN.
Example:
10000000
Required range:
x >= 1Required range:
1 <= x <= 100