Inflow & Outflow
GET
https://api.unusualwhales.com/api/etfs/{ticker}/in-outflow
Request
Security:
Bearer Auth
Authorization: Bearer <token>
Path Parameters
ticker
SingleTicker
required
A single ticker
Example:
AAPL
Query Parameters
start_date
Optional Market Date
optional
A trading date in the format of YYYY-MM-DD. This is optional and by default the last trading date.
Example:
2024-01-18
end_date
Optional Market Date
optional
A trading date in the format of YYYY-MM-DD. This is optional and by default the last trading date.
Example:
2024-01-18
Responses
200Response Body 200 OK
change
Etf Share Change
The net in/outflow measured as volume.
Example:
-50
change_prem
Etf Premium Change
The net in/outflow measured as premium.
Example:
-5023.50
close
Stock Close Price
The close stock price of the ticker.
Example:
182.91
date
General ISO Date
An ISO date.
Example:
2024-01-09
is_fomc
Is FOMC Date
If the date has an FOMC announcement.
volume
Stock Day Stock Volume
The volume of the ticker for the trading day.
Example:
23132119
Try It
GET
Path Parameters
Query Parameters
Request Sample
curl -X GET "https://api.unusualwhales.com/api/etfs/{ticker}/in-outflow" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Accept: application/json"
Response Example
200
{
"data": [
{
"change": -50,
"change_prem": "-12000.0",
"close": "236.16",
"date": "2024-10-02",
"is_fomc": false,
"volume": 592342
},
{
"change": 100,
"change_prem": "23500.0",
"close": "235.12",
"date": "2024-10-01",
"is_fomc": false,
"volume": 602342
}
]
}