API Reference
Private funds (ADV Schedule D)
Private funds advised by registered investment advisers (Form ADV Schedule D, 7.B.1).
Private funds (ADV Schedule D)
Private funds advised by registered investment advisers (Form ADV Schedule D, 7.B.1).
- Base URL:
https://api.clous.ai - Auth:
Authorization: Bearer clous_live_...
GET /v1/private-fundsResults are returned through the standard response envelope and are cursor-paginated.
Query parameters
Prop
Type
Example request
curl -s "https://api.clous.ai/v1/private-funds?limit=3" \
-H "Authorization: Bearer clous_live_..."import requests
resp = requests.get(
"https://api.clous.ai/v1/private-funds",
params={"limit":"3"},
headers={"Authorization": "Bearer clous_live_..."},
)
data = resp.json()const resp = await fetch(
"https://api.clous.ai/v1/private-funds?limit=3",
{ headers: { Authorization: "Bearer clous_live_..." } },
);
const data = await resp.json();Example response
{
"data": [
{
"id": 441351,
"crd": "23131",
"sec_number": "801-54859",
"firm_name": "OSAIC WEALTH, INC.",
"owner_kind": "direct",
"full_name": "ALEXANDER THOM SULANKE",
"entity_name": null,
"ownership_code": "NA",
"control_person": 0,
"pr_pf": 0,
"parent_entity_name": null,
"observed_at": "2026-05-29T01:10:15"
},
{
"id": 441350,
"crd": "23131",
"sec_number": "801-54859",
"firm_name": "OSAIC WEALTH, INC.",
"owner_kind": "direct",
"full_name": "AMY SHAUN BENNETT",
"entity_name": null,
"ownership_code": "NA",
"control_person": 0,
"pr_pf": 0,
"parent_entity_name": null,
"observed_at": "2026-05-29T01:10:15"
}
],
"page": {
"limit": 3,
"next_cursor": "NDQxMzQ5fDQ0MTM0OQ",
"has_more": true
},
"as_of": "2026-06-13T16:27:35.794100Z",
"source": "form_adv",
"query_echo": {
"limit": 3
},
"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. |
402 | Out of credits. |
404 | No record for the supplied path parameter. |
422 | Validation error — a parameter was the wrong type or out of range. |
429 | Rate limited. |
All data derives from public SEC EDGAR (and, where noted, FINRA IAPD / USPTO) filings. Clous is independent of the SEC.