Clous

Demos

See what one call unlocks.

Real recipes on live data — each is a single authenticated request returning the same JSON envelope. The responses below are abbreviated from actual API output.

Recipes

Six things to try first

Copy a call, swap the parameters, ship.

SourcingEndpoint

Find fresh capital raises

Surface new Form D private placements above a size threshold, resolved to the issuer entity.

GET /v1/raises?min_amount=5000000&limit=5
"issuer_name": "Bettor Capital IC, LP",
"issuer_state": "NEW JERSEY",
"filed_at": "2026-03-31"
InsidersEndpoint

Track insider trades by ticker

Every Form 3/4/5 transaction for a company, with the resolved owner and trade economics.

GET /v1/insider?ticker=PEGA&limit=5
"issuer_name": "PEGASYSTEMS INC",
"owner_name": "KRA DOUGLAS I",
"trans_code": "S", "value_usd": …
MonitoringEndpoint

Watch cybersecurity disclosures

A curated feed of 8-K Item 1.05 material-cyber-incident filings as they post.

GET /v1/cyber-incidents?limit=10
"company_name": "Oncology Institute, Inc.",
"items": ["1.05", "9.01"],
"filed_at": "2026-05-22"
HoldingsEndpoint

Read 13F institutional holdings

What a manager owns, position by position, with CUSIP, share count, and market value.

GET /v1/holdings?manager=Vanguard&issuer=Apple
"manager_name": "VANGUARD GROUP INC",
"issuer": "APPLE INC",
"value_usd": 347722995434
ResearchEndpoint

Search the text of every filing

Full-text search across EDGAR filing bodies since 2001 — find a phrase across the market.

GET /v1/full-text?q="going concern"&forms=10-K
"company_names": […],
"form_type": "10-K",
"filing_url": "https://www.sec.gov/…"
ExtractionEndpoint

Pull a section from a filing

Extract a named item — Risk Factors, MD&A, leadership change — from a 10-K/10-Q/8-K.

GET /v1/filings/{accession}/extract?item=1A
"item": "1A", "found": true,
"chars": 50000,
"text": "The following summarizes factors…"
50+ endpoints, one envelope, cursor pagination with no ceiling. See the full API reference or wire it up on the integrations page.