get_manager_holdings
Retrieve all disclosed 13F holdings for a specific institutional manager by providing the 10-digit SEC CIK and quarter code. Returns position details including CUSIP, ticker, value, and total portfolio value.
Instructions
Research data only. Returns disclosed institutional positions; do not infer manager intent or future direction. Return all positions held by a 13F filer in a given quarter.
Args: cik: zero-padded 10-digit SEC CIK (e.g. "0001037389"). quarter: quarter code like "q4y2025".
Returns: { "cik": "...", "quarter": "...", "n_positions": 3185, "total_value_thousands": 64461244358.0, "holdings": [{"CUSIP": ..., "TICKER": ..., "VALUE": ..., ...}, ...], "disclaimer": "..." }
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| cik | Yes | Zero-padded 10-digit SEC CIK. | |
| quarter | Yes | e.g. q4y2025 |