Get intraday accumulation snapshot
GET
/api/v1/public/companies/:ticker/accumulation5 credits / callAPI key required
Get intraday accumulation / distribution metrics for the current or most recent trading session. Returns session VWAP, volume above and below VWAP, estimated buy vs sell volume, volume by time period (morning / midday / afternoon), and a comparison to average volume. Useful for assessing real-time buying and selling pressure.
Parameters
Path
Company ticker symbol (1-5 letters, case-insensitive)
Code example
cURL
curl -X GET 'https://api.signal8.ai/api/v1/public/companies/AAPL/accumulation' \
-H "X-Api-Key: $SIGNAL8_API_KEY"Request URL
GET
https://api.signal8.ai/api/v1/public/companies/AAPL/accumulationexample · 200
{
"data": {
"ticker": "AAPL",
"sessionDate": "2026-06-15",
"sessionVwap": 295.87,
"currentPrice": 296.42,
"volumeAboveVwap": 19337941.87608,
"volumeBelowVwap": 11461132.899054,
"estimatedBuyVolume": 14922822.878842995,
"estimatedSellVolume": 15876251.896291006,
"totalVolume": 30799074.775133993,
"volumeByPeriod": {
"morning": 12866021.325641003,
"midday": 8112558.417785,
"afternoon": 9820495.031707997
},
"avgVolumeComparison": {
"currentVolume": 30799074.775133993,
"avgVolumeAtThisTime": 0,
"ratio": 0
},
"barCount": 390,
"lastBarTimestamp": 1781553540,
"marketStatus": "pre-market"
}
}