Ownership (13D/G)
Full reference for the live Clous ownership endpoint — search 13D/13G beneficial-ownership records and activist stakes by issuer, filer, person, form type, and filing date.
Ownership (13D/G)
The ownership endpoint exposes Schedule 13D / 13G beneficial-ownership filings — the SEC disclosures that surface large shareholders and activist stakes — resolved to canonical issuers and reporting persons. Each record is one reporting-person line on a 13D/13G filing.
- Base URL:
https://api.clous.ai - Auth:
Authorization: Bearer clous_live_...
List / search ownership records
GET /v1/ownershipList and filter 13D/13G beneficial-ownership records. Results are returned through the standard envelope and are cursor-paginated.
Query parameters
Prop
Type
Example request
All ownership records for an issuer matching "tesla":
curl -s "https://api.clous.ai/v1/ownership?issuer=tesla&limit=2" \
-H "Authorization: Bearer clous_live_..."import requests
resp = requests.get(
"https://api.clous.ai/v1/ownership",
params={"issuer": "tesla", "limit": 2},
headers={"Authorization": "Bearer clous_live_..."},
)
resp.raise_for_status()
data = resp.json()const resp = await fetch(
"https://api.clous.ai/v1/ownership?issuer=tesla&limit=2",
{ headers: { Authorization: "Bearer clous_live_..." } },
);
if (!resp.ok) throw new Error(`HTTP ${resp.status}`);
const data = await resp.json();Example response
{
"data": [
{
"id": 65493,
"accession": "0001104659-24-020124",
"cik_filer": "1318605",
"cik_subject": null,
"issuer": "Tesla, Inc.",
"person_name": "The Vanguard Group - 23-1945930",
"role": "reporting_person",
"form_type": "SC 13G/A",
"filing_date": "2024-02-13",
"source_url": "https://www.sec.gov/Archives/edgar/data/1318605/000110465924020124/0001104659-24-020124.txt",
"observed_at": "2026-05-29T14:12:03"
},
{
"id": 122687,
"accession": "0001193125-23-067846",
"cik_filer": "1318605",
"cik_subject": null,
"issuer": "Tesla, Inc. (TSLA)",
"person_name": "Elon R. Musk",
"role": "reporting_person",
"form_type": "SC 13G/A",
"filing_date": "2023-03-13",
"source_url": "https://www.sec.gov/Archives/edgar/data/1318605/000119312523067846/0001193125-23-067846.txt",
"observed_at": "2026-05-29T17:33:32"
}
],
"page": {
"limit": 2,
"next_cursor": "MjAyMzAzMTN8MTIyNjg3",
"has_more": true
},
"as_of": "2026-06-12T04:10:29.453831Z",
"source": "ownership",
"query_echo": {
"issuer": "tesla",
"limit": 2
},
"warnings": []
}Status codes
| Status | Meaning |
|---|---|
200 | Success. An empty result still returns 200 with data: [] and a warnings entry. |
401 | Missing or invalid API key. See error codes. |
402 | Out of credits. See error codes. |
422 | Validation error — a parameter was the wrong type or out of range. |
429 | Rate limited. See rate limits. |
Notes
- Records are 13D/13G beneficial-ownership lines —
13D/13D/Aare activist (control-intent) filings,13G/13G/Aare passive. Useform_classto match a whole family orform_typefor an exact form. rolevalues are lowercase:reporting_person(the beneficial owner) orsignatory.cik_subject(the issuer CIK) is sparse in the source data and is usuallynull— prefer theissuersubstring filter to find a company's filings. Tickers are not populated as a structured field; when present they appear inline in theissuerstring (e.g."Tesla, Inc. (TSLA)").- Use
query_echoin the response to confirm exactly which typed parameters Clous applied to your request. - All data derives from public SEC EDGAR filings; Clous is independent of the SEC.
- For paging through large result sets, follow
page.next_cursor— see Pagination, Errors & Rate limits.
Insider (Form 4)
Full reference for the live Clous insider-transactions endpoint — search Form 3/4/5 insider trades by issuer, owner, transaction code, date, and value.
Fund Holdings (N-PORT)
Reference for the live Clous Fund Holdings endpoint — query N-PORT portfolio holdings by fund, security (CUSIP/ISIN), asset category, value, and date.