Short Volume and Ratio
GET
https://api.unusualwhales.com/api/shorts/{ticker}/volume-and-ratio
Request
Security:
Bearer Auth
Authorization: Bearer <token>
Path Parameters
ticker
SingleTicker
required
A single ticker
Example:
AAPL
Responses
200 422 500Response Body 200 OK
close_price
Stock Close Price
The close stock price of the ticker.
Example:
182.91
market_date
date
The date for short interest.
short_volume
string
The short volume.
short_volume_ratio
string
The relative ratio of short volume to total volume.
total_volume
string
The total volume.
Try It
GET
Path Parameters
Request Sample
curl -X GET "https://api.unusualwhales.com/api/shorts/{ticker}/volume-and-ratio" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Accept: application/json"
Response Example
200
{
"data": [
{
"close_price": "45.75",
"market_date": "2023-04-10",
"short_volume": 925000,
"short_volume_ratio": "0.14",
"total_volume": 6607143
},
{
"close_price": "46.23",
"market_date": "2023-04-11",
"short_volume": 1150000,
"short_volume_ratio": "0.15",
"total_volume": 7666667
},
{
"close_price": "45.92",
"market_date": "2023-04-12",
"short_volume": 875000,
"short_volume_ratio": "0.13",
"total_volume": 6730769
},
{
"close_price": "46.45",
"market_date": "2023-04-13",
"short_volume": 1050000,
"short_volume_ratio": "0.17",
"total_volume": 6176471
}
]
}