ClousDocs
API Reference

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/raises

List 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

StatusMeaning
200Success. An empty result still returns 200 with data: [] and a warnings entry.
401Missing or invalid API key.
402Out of credits.
422Validation error — a parameter was the wrong type or out of range.
429Rate 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 state filter accepts either a 2-letter code or full name; short codes are mapped to the canonical full name on the issuer record (e.g. CACALIFORNIA).
  • Use query_echo in 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.

On this page