# Latest Filings `GET` `https://api.unusualwhales.com/api/institutions/latest_filings` The latest institutional filings. ## Authentication ``` Authorization: Bearer YOUR_API_KEY ``` ## Query Parameters | Name | Type | Required | Description | |------|------|----------|-------------| | `name` | Institution | No | A large entity that manages funds and investments for others. Queryable by name or cik. | | `date` | string | No | Date in format YYYY-MM-DD | | `order` | Latest Institutional Filings Order By | No | Optional columns to order the result by. The filing date is always sorted in descending order. | | `order_direction` | OrderDirection | No | Whether to sort descending or ascending. Descending by default. | | `limit` | Default 500 Max 500 Min 1 | No | How many items to return. Default: 500. Max: 500. Min: 1. | | `page` | Page | No | Page number (use with limit). Starts on page 0. | ## Response (200) | Field | Type | Description | |-------|------|-------------| | `cik` | CIK | | | `filing_date` | General ISO Date | | | `is_hedge_fund` | Is Hedge Fund | | | `name` | Name | | | `people` | People | | | `short_name` | Short Name | | | `tags` | Tags | | ## Example ### curl ```bash curl -X GET "https://api.unusualwhales.com/api/institutions/latest_filings" \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Accept: application/json" ``` ### Python ```python import http.client conn = http.client.HTTPSConnection("api.unusualwhales.com") headers = {"Authorization": "Bearer YOUR_API_KEY", "Accept": "application/json"} conn.request("GET", "/api/institutions/latest_filings", headers=headers) response = conn.getresponse() print(response.read().decode("utf-8")) ``` ## Response Example ```json { "data": [ { "cik": "0001791786", "filing_date": "2024-10-03", "is_hedge_fund": true, "name": "ELLIOTT INVESTMENT MANAGEMENT L.P.", "people": [ "Paul Singer" ], "short_name": "Elliott Investment Management", "tags": [ "activist" ] } ] } ```