ETF detail and fund profile
curl --request GET \
--url https://api.ngnmarket.com/v1/etfs/{symbol} \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.ngnmarket.com/v1/etfs/{symbol}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.ngnmarket.com/v1/etfs/{symbol}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.ngnmarket.com/v1/etfs/{symbol}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.ngnmarket.com/v1/etfs/{symbol}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.ngnmarket.com/v1/etfs/{symbol}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.ngnmarket.com/v1/etfs/{symbol}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"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-15T23:57:00.000Z"
}
}ETF Endpoints
ETF Detail
Retrieve full details for a single NGX-listed ETF or ETP.
GET
/
etfs
/
{symbol}
ETF detail and fund profile
curl --request GET \
--url https://api.ngnmarket.com/v1/etfs/{symbol} \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.ngnmarket.com/v1/etfs/{symbol}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.ngnmarket.com/v1/etfs/{symbol}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.ngnmarket.com/v1/etfs/{symbol}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.ngnmarket.com/v1/etfs/{symbol}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.ngnmarket.com/v1/etfs/{symbol}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.ngnmarket.com/v1/etfs/{symbol}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"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-15T23:57:00.000Z"
}
}This endpoint returns the full profile for a specific NGX-listed ETF or ETP: 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
Pass your API key as a Bearer token: Authorization: Bearer ngm_live_YOUR_KEY.
Generate keys at ngnmarket.com/dashboard/developer.
Path Parameters
ETF ticker symbol (e.g. STANBICETF30). Case-insensitive.
Example:
"STANBICETF30"