GET /api/v1/company/{ticker}/ownership
Last verified
Auto-generated. This article is rebuilt from FastAPI route introspection by
scripts/build_api_kb.py. Edit the route docstring inapp/and re-run the script β do not edit this file directly.
GET /api/v1/company/{ticker}/ownership
Handler: app.company.routes.get_company_ownership
Methods: GET
Description
Ownership and corporate events panel.
Returns co_ownership rows (short interest + insider transactions + institutional snapshots) and co_corp_events rows (splits, dividends, lockup expiries, etc.) for the company dashboard.
404 when the ticker has not been scaffolded. 200 with empty lists when the ticker is known but no ownership or events data exists yet.
Parameters
| In | Name | Type | Default | Description |
|---|---|---|---|---|
| path | ticker |
str |
PydanticUndefined |
|
| query | ownership_limit |
int |
40 |
Number of co_ownership rows to return (newest-first). Default 40. |
| query | events_limit |
int |
20 |
Number of co_corp_events rows to return (newest-first). Default 20. |
Curl
curl -s https://bigclawd.com/api/v1/company/{ticker}/ownership