API Reference
Whistleblower actions
SEC whistleblower-program covered actions.
Whistleblower actions
SEC whistleblower-program covered actions.
- Base URL:
https://api.clous.ai - Auth:
Authorization: Bearer clous_live_...
GET /v1/whistleblowerResults are returned through the standard response envelope and are cursor-paginated.
Query parameters
Prop
Type
Example request
curl -s "https://api.clous.ai/v1/whistleblower?limit=3" \
-H "Authorization: Bearer clous_live_..."import requests
resp = requests.get(
"https://api.clous.ai/v1/whistleblower",
params={"limit":"3"},
headers={"Authorization": "Bearer clous_live_..."},
)
data = resp.json()const resp = await fetch(
"https://api.clous.ai/v1/whistleblower?limit=3",
{ headers: { Authorization: "Bearer clous_live_..." } },
);
const data = await resp.json();Example response
{
"data": [
{
"id": "fad1f779-4835-4b88-85e2-1e2e188af0c5",
"record_kind": "final_order",
"award_order_no": "34-85412",
"fiscal_year": 2026,
"award_amount_usd": 0,
"underlying_action_release_no": null,
"redacted_award_recipient_count": 0,
"public_summary": "FINAL ORDER-THIS PRELIMINARY DETERMINATION BECAME THE FINAL ORDER OF THE COMMISSION ON FEBRUARY 26, 2026 AS TO CLAIMANT 2 PURSUANT TO RULE 21F-10(f) OF THE SECURITIES EXCHANGE ACT OF 1934",
"order_date": null,
"source_url": "https://www.sec.gov/files/fo-02262026-final.pdf",
"last_observed_at": "2026-06-12T00:40:40"
},
{
"id": "d9b0e828-292b-42b0-93f3-981e77435c69",
"record_kind": "final_order",
"award_order_no": "link:6075ae224f43",
"fiscal_year": 2026,
"award_amount_usd": 0,
"underlying_action_release_no": null,
"redacted_award_recipient_count": 0,
"public_summary": "Award Order (PDF)",
"order_date": "2026-04-08",
"source_url": "https://www.sec.gov/files/2026-11.pdf",
"last_observed_at": "2026-05-27T02:09:04"
}
],
"page": {
"limit": 3,
"next_cursor": "MjAyNnxjNTc1ZjViNS1hNjNhLTRiZDgtOTIzOC1lY2MwZjBmNTZhZTc",
"has_more": true
},
"as_of": "2026-06-13T16:27:36.376312Z",
"source": "sec",
"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.