Skip to main content
GET
/
v1
/
market
/
movers
Top gainers and losers
curl --request GET \
  --url https://api.ngnmarket.com/v1/market/movers \
  --header 'Authorization: Bearer <token>'
{ "success": true, "data": { "trade_date": "2026-04-17", "summary": { "total_gainers": 10, "total_losers": 10, "biggest_gainer": { "symbol": "OKOMUOIL", "change_percent": 9.94 }, "biggest_loser": { "symbol": "TRANSCORP", "change_percent": -9.8 } }, "top_gainers": [ { "symbol": "OKOMUOIL", "company_name": "Okomu Oil Palm", "sector": "Agriculture", "last_close": 364.5, "todays_close": 400.7, "change": 36.2, "change_percent": 9.94, "volume": 287340, "value_traded": 115073718, "trades": 412, "updated_at": "2026-04-17T18:00:00.000Z" } ], "top_losers": [ { "symbol": "TRANSCORP", "company_name": "Transnational Corporation", "sector": "Conglomerates", "last_close": 10.2, "todays_close": 9.2, "change": -1, "change_percent": -9.8, "volume": 1820450, "value_traded": 16748140, "trades": 831, "updated_at": "2026-04-17T18:00:00.000Z" } ] }, "meta": { "plan": "growth", "calls_used": 210, "calls_remaining": 499790, "reset_at": "2026-05-01T00:00:00.000Z" } }

Documentation Index

Fetch the complete documentation index at: https://docs.ngnmarket.com/llms.txt

Use this file to discover all available pages before exploring further.

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

date
string<date>

Trading date in YYYY-MM-DD format. Omit for the most recent available day.

Example:

"2026-04-17"

limit
integer
default:10

Number of entries to return per category (gainers and losers each respect this limit). Maximum 50.

Required range: 1 <= x <= 50
type
enum<string>

Filter to a single category. Omit to receive both.

Available options:
gainers,
losers

Response

Market statistics retrieved successfully.

success
boolean
required
meta
object

Quota and plan metadata included on every authenticated response.

data
object