curl --request GET \
--url https://api.aries.com/v1/financials/short-volume \
--header 'Authorization: Bearer <token>'{
"results": [
{
"ticker": "AAPL",
"date": "2024-02-06",
"shortVolume": 5683713,
"shortVolumeRatio": 34.95,
"totalVolume": 16264662,
"exemptVolume": 67840,
"nonExemptVolume": 5615873,
"adfShortVolume": 0,
"adfShortVolumeExempt": 0,
"nasdaqCarteretShortVolume": 5298900,
"nasdaqCarteretShortVolumeExempt": 63532,
"nasdaqChicagoShortVolume": 28784,
"nasdaqChicagoShortVolumeExempt": 0,
"nyseShortVolume": 356029,
"nyseShortVolumeExempt": 4308
}
],
"status": "OK",
"requestId": "c701bead81e94e7186f6042474b117d8",
"nextUrl": "https://api.aries.com/v1/financials/short-volume?cursor=AQwPBEFBUEwCAAABAAABAQoAAgEPBEFBUEwBDwRBQVBM"
}Retrieve daily short sale volume and total trading volume for a specific ticker. Monitor short selling activity and market sentiment shifts.
Use Case: Track daily short volume percentage to identify increased bearish pressure on a stock.
curl --request GET \
--url https://api.aries.com/v1/financials/short-volume \
--header 'Authorization: Bearer <token>'{
"results": [
{
"ticker": "AAPL",
"date": "2024-02-06",
"shortVolume": 5683713,
"shortVolumeRatio": 34.95,
"totalVolume": 16264662,
"exemptVolume": 67840,
"nonExemptVolume": 5615873,
"adfShortVolume": 0,
"adfShortVolumeExempt": 0,
"nasdaqCarteretShortVolume": 5298900,
"nasdaqCarteretShortVolumeExempt": 63532,
"nasdaqChicagoShortVolume": 28784,
"nasdaqChicagoShortVolumeExempt": 0,
"nyseShortVolume": 356029,
"nyseShortVolumeExempt": 4308
}
],
"status": "OK",
"requestId": "c701bead81e94e7186f6042474b117d8",
"nextUrl": "https://api.aries.com/v1/financials/short-volume?cursor=AQwPBEFBUEwCAAABAAABAQoAAgEPBEFBUEwBDwRBQVBM"
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
ticker parameter
Was this page helpful?