Market data
Market snapshot (daily)
Return the latest market snapshot: the current trading day against the previous one, across the securities and pension indices, capitalisation, volume, value and deals, each with its variance and percentage change. Takes no parameters.
Requires scopemarket.snapshot.daily
Response fields
| Field | Description |
|---|---|
current.date string | Current trading day. |
previous.date string | Previous trading day compared against. |
metrics.securitiesIndex object | NASD Securities Index: current, previous, variance, percentChange. |
metrics.pensionIndex object | NASD Pension Index, same shape. |
metrics.capitalisation object | Market capitalisation, same shape. |
metrics.volume object | Traded volume, same shape. |
metrics.value object | Traded value, same shape. |
metrics.deals object | Number of deals, same shape. |
Request
curl "https://stagingmobile.nasdng.com/v2/vendor/market-snapshot/daily" \ -H "Authorization: Bearer sk_test_xxxxxxxxxxxxxxxxxxxxxxxx"
const res = await fetch("https://stagingmobile.nasdng.com/v2/vendor/market-snapshot/daily", { method: "GET", headers: { Authorization: "Bearer sk_test_xxxxxxxxxxxxxxxxxxxxxxxx" }, }); const { data } = await res.json();
import requests res = requests.get( "https://stagingmobile.nasdng.com/v2/vendor/market-snapshot/daily", headers={"Authorization": "Bearer sk_test_xxxxxxxxxxxxxxxxxxxxxxxx"}, ) data = res.json()
Response 200 OK
{ "success": true, "message": "Market snapshot fetched successfully", "data": { "current": { "date": "2026-07-06" }, "previous": { "date": "2026-07-03" }, "metrics": { "securitiesIndex": { "current": 1042.18, "previous": 1038.44, "variance": 3.74, "percentChange": 0.36 }, "pensionIndex": { "current": 4210.9, "previous": 4205.1, "variance": 5.8, "percentChange": 0.14 }, "capitalisation": { "current": 1264000000000, "previous": 1259500000000, "variance": 4500000000, "percentChange": 0.36 }, "volume": { "current": 2410500, "previous": 1985000, "variance": 425500, "percentChange": 21.44 }, "value": { "current": 96420000, "previous": 78310000, "variance": 18110000, "percentChange": 23.13 }, "deals": { "current": 142, "previous": 118, "variance": 24, "percentChange": 20.34 } } } }