Bulk ticker snapshots
GET
/api/v1/public/market/snapshot1 credit / callAPI key required
Daily snapshot data (open, high, low, close, volume, change) for an explicit ticker list (max 50) or for the whole tracked universe when `tickers` is omitted.
Parameters
Query
Comma-separated ticker list (max 50). Omit for full universe.
Code example
cURL
curl -X GET 'https://api.signal8.ai/api/v1/public/market/snapshot' \
-H "X-Api-Key: $SIGNAL8_API_KEY"Request URL
GET
https://api.signal8.ai/api/v1/public/market/snapshotexample · 200
{
"data": {
"count": 1000,
"snapshots": [
{
"ticker": "ADTX",
"dayOpen": 0.0113,
"dayHigh": 0.0166,
"dayLow": 0.0113,
"dayClose": 0.0145,
"dayVolume": 820775282,
"dayVwap": 0.0138,
"prevClose": 0.0129,
"change": 0.0016,
"changePercent": 12.4031,
"preMarketPrice": 0.0145,
"preMarketChange": 0.0015,
"preMarketChangePercent": 12.0155,
"afterHoursPrice": 0.0158,
"afterHoursChange": 0.0029,
"afterHoursChangePercent": 22.4806,
"updatedAt": "2026-06-16T13:30:04.621Z"
},
{
"ticker": "GPUS",
"dayOpen": 0.2016,
"dayHigh": 0.298,
"dayLow": 0.1889,
"dayClose": 0.2255,
"dayVolume": 709068935,
"dayVwap": 0.2338,
"prevClose": 0.2713,
"change": -0.0458,
"changePercent": -16.9001,
"preMarketPrice": 0.227,
"preMarketChange": -0.0443,
"preMarketChangePercent": -16.3288,
"afterHoursPrice": 0.2667,
"afterHoursChange": -0.0046,
"afterHoursChangePercent": -1.6955,
"updatedAt": "2026-06-16T13:30:03.952Z"
},
{
"ticker": "PAVS",
"dayOpen": 0.4736,
"dayHigh": 0.5198,
"dayLow": 0.1701,
"dayClose": 0.2084,
"dayVolume": 671126305,
"dayVwap": 0.3976,
"prevClose": 0.1899,
"change": 0.0185,
"changePercent": 9.742,
"preMarketPrice": 0.2065,
"preMarketChange": 0.0166,
"preMarketChangePercent": 8.7414,
"afterHoursPrice": 0.2168,
"afterHoursChange": 0.0269,
"afterHoursChangePercent": 14.1654,
"updatedAt": "2026-06-16T13:30:03.169Z"
}
]
}
}