Retrieve Institutional Activity
Fetches the trading activities for a given institution.
get/api/institution/{name}/activity
Path parameters
namestring required
Example:VANGUARD GROUP INC
A large entity that manages funds and investments for others. Queryable by name or CIK.
Query parameters
datestring date
Example:2024-01-18T00:00:00.000Z
A date in the format of YYYY-MM-DD.
limitinteger
Example:10
How many items to return. Default 500. Max 500. Min 1.
pageinteger
Example:1
Page number (use with limit). Starts on page 0.
Response
Successful response with institutional activity data.
Example response
{
"data": [
{
"filing_date": "2024-01-09T00:00:00.000Z",
"put_call": "put",
"report_date": "2024-01-09T00:00:00.000Z",
"security_type": "Share",
"ticker": "AAPL",
"units": 4103,
"units_change": -320
}
]
}