Use this file to discover all available pages before exploring further.
The sectors endpoint aggregates price performance across all companies in each NGX sector, giving you a single call that shows which sectors are leading or lagging the market.Endpoint:GET /v1/market/sectors (Growth plan)
The response is already sorted by change_1d descending. If you want a different sort (by 52-week performance or market cap, for example) do it client-side:
JavaScript
// Top sectors by 52-week changeconst byYearly = [...data.sectors].sort((a, b) => b.change_52w - a.change_52w);// Sectors where more stocks declined than advanced (bearish breadth)const bearish = data.sectors.filter( (s) => s.breadth.decliners > s.breadth.advancers);