Skip to main content
GET
/
dividends
/
recent
Recent dividends
curl --request GET \
  --url https://api.ngnmarket.com/v1/dividends/recent \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "dividends": [
      {
        "symbol": "ZENITHBANK",
        "company_name": "Zenith Bank Plc",
        "sector": "Financial Services",
        "ex_dividend_date": "2026-05-05",
        "dividend": 5,
        "type": "Cash",
        "payment_date": "2026-05-20",
        "yield": 6.1
      },
      {
        "symbol": "ACCESSCORP",
        "company_name": "Access Holdings Plc",
        "sector": "Financial Services",
        "ex_dividend_date": "2026-05-12",
        "dividend": 1.8,
        "type": "Cash",
        "payment_date": "2026-05-27",
        "yield": 3.4
      }
    ],
    "page": 1,
    "total": 22,
    "total_pages": 2
  },
  "meta": {
    "plan": "starter",
    "calls_used": 16,
    "calls_remaining": 99984,
    "reset_at": "2026-06-01T00:00:00.000Z"
  }
}
This endpoint returns a paginated list of NGX-listed companies whose ex-dividend date fell within the last 60 days, ordered chronologically. Use it to see which dividends have recently gone ex, when payments are expected, and to track dividend activity across the market. Use page and limit for pagination (up to 100 records per page). For example, to fetch the first page of recent ex-dividend activity:
curl "https://api.ngnmarket.com/v1/dividends/recent?limit=20&page=1" \
  -H "Authorization: Bearer ngm_live_YOUR_KEY"
The window is fixed at 60 days before today. If no dividends went ex in that period, dividends will be an empty array and total will be 0. This endpoint requires a Starter plan or higher.

Authorizations

Authorization
string
header
required

Pass your API key as a Bearer token: Authorization: Bearer ngm_live_YOUR_KEY. Generate keys at ngnmarket.com/dashboard/developer.

Query Parameters

page
integer
default:1

Page number (1-based).

Required range: x >= 1
limit
integer
default:20

Records per page (1–100).

Required range: 1 <= x <= 100

Response

Recent dividends retrieved successfully.

success
boolean
required
meta
object

Quota and plan metadata included on every authenticated response.

data
object