Skip to main content
GET
/
v1
/
analytics
/
net-inflow
Get Net Inflow
curl --request GET \
  --url https://api.aries.com/v1/analytics/net-inflow \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "nasdaqNetInflow": 125000000.5,
    "nasdaqTradeCount": 8500000,
    "nyseNetInflow": 98000000.25,
    "nyseTradeCount": 6200000,
    "timestamp": "2026-03-09T13:48:11.726532Z"
  }
}

Authorizations

Authorization
string
header
required

OAuth2 Bearer token: obtain an access token from the token endpoint and send it in the Authorization header.

Response

Net inflow data retrieved successfully

success
boolean
data
object

Net market inflow snapshot for Nasdaq and NYSE. Use it to show whether reported flow is net buying or net selling.

Example:
{
"nasdaqNetInflow": 125000000.5,
"nasdaqTradeCount": 8500000,
"nyseNetInflow": 98000000.25,
"nyseTradeCount": 6200000,
"timestamp": "2026-03-09T13:48:11.726532Z"
}