Skip to main content
GET
/
etfs
/
{symbol}
ETF detail and fund profile
curl --request GET \
  --url https://api.ngnmarket.com/v1/etfs/{symbol} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "symbol": "STANBICETF30",
    "isin": "NGSTBKETF308",
    "name": "STANBIC IBTC ETF 30",
    "fund_manager": "Stanbic IBTC Asset Management Limited",
    "index_tracked": "NSE 30",
    "fund_sponsor": "Stanbic IBTC Stockbrokers Limited",
    "trustee": "FBN Trustees Limited",
    "custodian": "UBA Plc (Global Investor Services Division)",
    "liquidity_provider": "Stanbic IBTC Stockbrokers Limited",
    "website": null,
    "current_price": 4175,
    "prev_close": 4330,
    "price_change": -155,
    "price_change_percent": -3.47,
    "open_price": 4330,
    "day_high": 4350,
    "day_low": 3911.5,
    "volume": 3961,
    "value_traded": 16361032.94,
    "high_52wk": 7003.96,
    "low_52wk": 295.3,
    "avg_vol_3m": 32,
    "change_7d_percent": null,
    "change_ytd_percent": null,
    "change_52w_percent": null,
    "latest_date": "2026-06-10",
    "stats_date": "2026-06-10"
  },
  "meta": {
    "plan": "hobby",
    "calls_used": 142,
    "calls_remaining": 9858,
    "reset_at": "2026-07-01T00:00:00.000Z"
  }
}
This endpoint returns comprehensive information for a specific NGX-listed ETF or ETP. The response includes the full fund profile — ISIN, fund manager, index tracked, trustee, custodian, and liquidity provider — alongside the latest OHLCV snapshot, 52-week price range, average 3-month volume, and period change percentages. Symbols are case-insensitive. 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.

Path Parameters

symbol
string
required

ETF ticker symbol (e.g. STANBICETF30). Case-insensitive.

Example:

"STANBICETF30"

Response

ETF detail retrieved successfully.

success
boolean
required
meta
object

Quota and plan metadata included on every authenticated response.

data
object