Daily NGX market summary
curl --request GET \
--url https://api.ngnmarket.com/v1/market/snapshot \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.ngnmarket.com/v1/market/snapshot"
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/market/snapshot', 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/market/snapshot",
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/market/snapshot"
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/market/snapshot")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.ngnmarket.com/v1/market/snapshot")
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": {
"date": "2026-04-17",
"asi": 105432.18,
"asi_change": 876.44,
"asi_change_percent": 0.84,
"ytd_asi_change_percent": 12.37,
"deals": 4821,
"volume": 312847291,
"value_traded": 4821093847,
"turnover_rate": 0.0093,
"market_cap": {
"equity": 52109847302,
"bonds": 5100000000,
"etfs": 1081200000,
"total": 58291047302
},
"breadth": {
"advancers": 38,
"decliners": 21,
"unchanged": 14,
"total": 73,
"adv_dec_ratio": 1.81
},
"total_listed_securities": 158,
"session": {
"open_time": "10:00",
"close_time": "14:30",
"timezone": "Africa/Lagos"
},
"updated_at": "2026-04-17T18:00:00.000Z"
},
"meta": {
"plan": "free",
"calls_used": 1,
"calls_remaining": 9999,
"reset_at": "2026-05-15T23:57:00.000Z"
}
}
Daily NGX market summary
Returns the full daily market summary for a given trading date: ASI level and change, total deals, volume, naira value traded, and a market-capitalisation breakdown across equities, bonds, and ETFs. Omit the date parameter to receive the most recent available trading day.
When queried without a date during NGX trading hours (Monday–Friday, 09:00–16:00 WAT), this reflects an intraday snapshot updated every 20 minutes.
Plan required: Free
GET
/
market
/
snapshot
Daily NGX market summary
curl --request GET \
--url https://api.ngnmarket.com/v1/market/snapshot \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.ngnmarket.com/v1/market/snapshot"
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/market/snapshot', 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/market/snapshot",
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/market/snapshot"
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/market/snapshot")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.ngnmarket.com/v1/market/snapshot")
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": {
"date": "2026-04-17",
"asi": 105432.18,
"asi_change": 876.44,
"asi_change_percent": 0.84,
"ytd_asi_change_percent": 12.37,
"deals": 4821,
"volume": 312847291,
"value_traded": 4821093847,
"turnover_rate": 0.0093,
"market_cap": {
"equity": 52109847302,
"bonds": 5100000000,
"etfs": 1081200000,
"total": 58291047302
},
"breadth": {
"advancers": 38,
"decliners": 21,
"unchanged": 14,
"total": 73,
"adv_dec_ratio": 1.81
},
"total_listed_securities": 158,
"session": {
"open_time": "10:00",
"close_time": "14:30",
"timezone": "Africa/Lagos"
},
"updated_at": "2026-04-17T18:00:00.000Z"
},
"meta": {
"plan": "free",
"calls_used": 1,
"calls_remaining": 9999,
"reset_at": "2026-05-15T23:57:00.000Z"
}
}
Authorizations
Pass your API key as a Bearer token: Authorization: Bearer ngm_live_YOUR_KEY.
Generate keys at ngnmarket.com/dashboard/developer.
Query Parameters
Trading date in YYYY-MM-DD format (e.g. 2026-04-17). Omit for the latest available snapshot.
Example:
"2026-04-17"