ClousDocs
API Reference

Overview

Base URL, authentication, the shared response envelope, and the live Clous API endpoints.

API Reference

The Clous REST API serves entity-resolved SEC filings through one consistent JSON envelope.

  • Base URL: https://api.clous.ai
  • Auth: Authorization: Bearer clous_live_... (see Authentication)
  • Content type: application/json
  • OpenAPI 3.1: the live spec is published at https://api.clous.ai/openapi.json

Live endpoints

38 endpoints are live across the SEC core. Every one returns the same envelope and cursor pagination.

Advisers & managers

PathDescription
/v1/advisersForm ADV investment advisers (+ /v1/advisers/{crd} profile)
/v1/managers13F institutional managers
/v1/holdings13F holdings (manager → positions)
/v1/iapd-individualsAdviser representatives (IAPD)
/v1/broker-dealersBroker-dealers (Form BD)
/v1/form-crsForm CRS relationship summaries

Companies & filings

PathDescription
/v1/entitiesCompany / CIK / ticker directory
/v1/filingsEDGAR filing index, all forms
/v1/financialsXBRL company facts
/v1/financials/{cik}All XBRL facts for one company
/v1/financial-statementsStandardized statement line items
/v1/full-textFull-text search across filing bodies (2001+)
/v1/sourcesDataset catalog & freshness

On-demand filing extraction

PathDescription
/v1/filings/{accession}/documentsDocument manifest for a filing
/v1/filings/{accession}/extractNamed section (Risk Factors, MD&A, …)
/v1/filings/{accession}/events8-K reported items, classified
/v1/filings/{accession}/insidersForm 3/4/5 structured detail
/v1/filings/{accession}/subsidiariesExhibit 21 subsidiaries
/v1/cyber-incidents8-K Item 1.05 cybersecurity incidents

Ownership & insiders

PathDescription
/v1/insiderForm 3/4/5 insider transactions
/v1/insider/form144Form 144 restricted-stock sales
/v1/ownership13D/13G beneficial ownership

Funds

PathDescription
/v1/funds/holdingsN-PORT fund holdings
/v1/funds/providersN-CEN service providers
/v1/private-fundsPrivate funds (ADV Schedule D)
/v1/private-fund-statsPrivate fund statistics (Form PF)

Capital, governance & enforcement

PathDescription
/v1/raisesForm D private placements
/v1/proxy/officersDEF 14A officers/directors
/v1/boardDirectors & board members
/v1/compensationExecutive compensation
/v1/uspto-patent-grantsUSPTO patent grants
/v1/enforcementSEC enforcement actions
/v1/litigationSEC litigation releases
/v1/trading-suspensionsSEC trading suspensions
/v1/whistleblowerWhistleblower covered actions
/v1/nt-lateLate-filing notifications (NT)

Monitoring & events

PathDescription
/v1/eventsNormalized, evidence-backed business-change event feed
/v1/monitorsWatches on a ticker / CIK / form / event type (CRUD)
/v1/webhooks/endpointsSigned webhook endpoints + delivery log

| GET | /healthz | Liveness check (no auth). |

Still rolling out: structured N-PX, Form C, S-1/IPO deal data, audit fees, float. See the roadmap.

The response envelope

Every endpoint wraps its payload in the same top-level object:

{
  "data": [],
  "page": { "limit": 25, "next_cursor": null, "has_more": false },
  "as_of": "2026-06-11T00:00:00Z",
  "source": "SEC EDGAR — Form ADV",
  "query_echo": {},
  "warnings": []
}

See the Advisers reference for the per-field detail of the records inside data, and Pagination, Errors & Rate limits for how page and error responses work.

On this page