Valley LogoBETA
Stocks APIStock Dividends

Stock Dividends

Returns a list of historical dividend announcements and payments for a given stock.

Request

http
1GET /v1/stocks/MTNGH/dividends HTTP/1.1
2Host: api.usevalley.xyz
3X-API-Key: live_your_key_here

Path parameters

ParameterDescription
symbolGSE ticker symbol

Response

json
1{
2  "data": [
3    {
4      "id": "e6f4a8...",
5      "symbol": "MTNGH",
6      "ex_date": "2025-08-22",
7      "payment_date": "2025-09-05",
8      "record_date": null,
9      "amount": "0.0800",
10      "type": "Interim",
11      "period": "HY 2025"
12    },
13    {
14      "id": "a1b2c3...",
15      "symbol": "MTNGH",
16      "ex_date": "2025-03-21",
17      "payment_date": "2025-04-04",
18      "record_date": null,
19      "amount": "0.4000",
20      "type": "Final",
21      "period": "FY 2024"
22    }
23  ],
24  "meta": {
25    "timestamp": "2026-03-16T11:20:00Z",
26    "version": "1.0",
27    "exchange": "GSE"
28  }
29}

Notes

  • Dividends are returned in reverse chronological order (most recent first).
  • All amount values are in Ghana Cedis (GHS).
  • payment_date and record_date may be null if the exact dates haven't been finalized by the exchange yet.