Dividend history
Company Endpoints
Dividend History
Retrieve the full dividend history for an NGX-listed company.
GET
Dividend history
This endpoint returns the complete dividend history for an NGX-listed company, ordered from most recent to oldest. Each record includes the ex-dividend date, dividend amount (in NGN per share), dividend type, payment date, and trailing yield at time of declaration.
Use
To fetch all dividends declared between two dates:
If a company has no dividend history on record,
from and to to filter by date range, or limit to cap the number of records returned (max 100). Omitting all parameters returns the full history.
For example, to fetch DANGCEM’s last 10 dividends:
dividends will be an empty array and count will be 0. This endpoint requires a Starter plan or higher.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. DANGCEM). Case-insensitive.
Example:
"DANGCEM"
Query Parameters
Return dividends with an ex-dividend date on or after this date (YYYY-MM-DD).
Example:
"2020-01-01"
Return dividends with an ex-dividend date on or before this date (YYYY-MM-DD).
Example:
"2024-12-31"
Maximum number of records to return (1–100). Omit to return all available records.
Required range:
1 <= x <= 100Example:
10