Skip to main content
GET
/
v1
/
market
/
trending-dates
Trading date activity and breadth
curl --request GET \
  --url https://api.ngnmarket.com/v1/market/trending-dates \
  --header 'Authorization: Bearer <token>'
{ "success": true, "data": { "count": 3, "latest": "2026-04-17", "earliest": "2026-04-15", "data": [ { "date": "2026-04-17", "label": "latest", "gainersCount": 48, "losersCount": 22, "totalRecords": 84, "formattedDate": "Fri, Apr 17, 2026" }, { "date": "2026-04-16", "label": "previous", "gainersCount": 31, "losersCount": 39, "totalRecords": 82, "formattedDate": "Thu, Apr 16, 2026" }, { "date": "2026-04-15", "label": null, "gainersCount": 55, "losersCount": 14, "totalRecords": 83, "formattedDate": "Wed, Apr 15, 2026" } ] }, "meta": { "plan": "growth", "calls_used": 215, "calls_remaining": 499785, "reset_at": "2026-05-01T00:00:00.000Z" } }
The trending dates endpoint returns a list of NGX trading sessions enriched with market breadth data including the total number of securities that traded, how many advanced, and how many declined on each day. Use this endpoint to identify historically active sessions, power a calendar view of market activity, or filter date ranges before querying snapshot or statistics data. This endpoint requires a Growth 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

limit
integer
default:90

Maximum number of dates to return (1–365). Dates are returned newest-first.

Required range: 1 <= x <= 365

Response

Trending dates retrieved successfully.

success
boolean
required
meta
object

Quota and plan metadata included on every authenticated response.

data
object