Form D Raises
Full reference for the live Clous Form D endpoint — list and filter private-placement capital raises, resolved to issuer entities.
Form D Raises
The raises endpoint exposes Form D private-placement offerings (capital raises), resolved to canonical issuer entities. Each record carries the issuer, the offering amounts, and the fund classification straight from the filing.
- Base URL:
https://api.clous.ai - Auth:
Authorization: Bearer clous_live_...
List / search raises
GET /v1/raisesList and filter Form D offerings. Results are returned through the standard envelope and are cursor-paginated.
Query parameters
Prop
Type
Example request
California venture-fund raises:
curl -s "https://api.clous.ai/v1/raises?state=CA&fund_type=Venture&limit=2" \
-H "Authorization: Bearer clous_live_..."import requests
resp = requests.get(
"https://api.clous.ai/v1/raises",
params={"state": "CA", "fund_type": "Venture", "limit": 2},
headers={"Authorization": "Bearer clous_live_..."},
)
resp.raise_for_status()
data = resp.json()const resp = await fetch(
"https://api.clous.ai/v1/raises?state=CA&fund_type=Venture&limit=2",
{
headers: { Authorization: "Bearer clous_live_..." },
},
);
const data = await resp.json();Example response
{
"data": [
{
"accession": "0002126184-26-000001",
"filed_at": "2026-03-31",
"issuer_name": "Tresses SPV B, LP",
"issuer_cik": "0002126184",
"issuer_city": "Napa",
"issuer_state": "CALIFORNIA",
"industry_group": "Pooled Investment Fund",
"investment_fund_type": "Venture Capital Fund",
"is_pooled_fund": true,
"total_offering_amount": 600000,
"total_amount_sold": 600000,
"total_remaining": 0,
"min_investment": null,
"num_non_accredited": 0,
"first_sale_date": "2025-04-17"
},
{
"accession": "0002124991-26-000001",
"filed_at": "2026-03-31",
"issuer_name": "Proximal Ventures Fund I LP",
"issuer_cik": "0002124991",
"issuer_city": "MILL VALLEY",
"issuer_state": "CALIFORNIA",
"industry_group": "Pooled Investment Fund",
"investment_fund_type": "Venture Capital Fund",
"is_pooled_fund": true,
"total_offering_amount": 20000000,
"total_amount_sold": 10635000,
"total_remaining": 9365000,
"min_investment": null,
"num_non_accredited": 0,
"first_sale_date": "2026-03-16"
}
],
"page": {
"limit": 2,
"next_cursor": "MjAyNjAzMzF8MDAwMjEyNDk5MS0yNi0wMDAwMDE",
"has_more": true
},
"as_of": "2026-06-12T04:10:28.717598Z",
"source": "form_d",
"query_echo": {
"state": "CA",
"industry": null,
"q": null,
"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. |
402 | Out of credits. |
422 | Validation error — a parameter was the wrong type or out of range. |
429 | Rate limited. |
Error envelopes and rate-limit semantics are documented in Pagination, Errors & Rate limits.
Notes
- Records come from Form D private-placement filings — issuer entity, offering
amounts (
total_offering_amount,total_amount_sold,total_remaining), and fund classification (industry_group,investment_fund_type,is_pooled_fund). - The
statefilter accepts either a 2-letter code or full name; short codes are mapped to the canonical full name on the issuer record (e.g.CA→CALIFORNIA). - 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.
Fund Providers (N-CEN)
Reference for the live Clous Fund Providers endpoint — list/search the service providers (custodian, administrator, auditor, etc.) that registered funds report on Form N-CEN.
Proxy Officers (DEF 14A)
Full reference for the live Clous DEF 14A endpoint — list/search the officers and directors disclosed in proxy statements, resolved to issuer entities.