ClousDocs
API Reference

Cybersecurity incidents (8-K 1.05)

Curated feed of SEC 8-K Item 1.05 material-cybersecurity-incident disclosures (mandatory since Dec 2023).

Cybersecurity incidents (8-K 1.05)

Curated feed of SEC 8-K Item 1.05 material-cybersecurity-incident disclosures (mandatory since Dec 2023).

  • Base URL: https://api.clous.ai
  • Auth: Authorization: Bearer clous_live_...

GET /v1/cyber-incidents

Results are returned through the standard response envelope and are cursor-paginated.

Query parameters

Prop

Type

Example request

curl -s "https://api.clous.ai/v1/cyber-incidents?limit=3" \
  -H "Authorization: Bearer clous_live_..."
import requests
resp = requests.get(
    "https://api.clous.ai/v1/cyber-incidents",
    params={"limit":"3"},
    headers={"Authorization": "Bearer clous_live_..."},
)
data = resp.json()
const resp = await fetch(
  "https://api.clous.ai/v1/cyber-incidents?limit=3",
  { headers: { Authorization: "Bearer clous_live_..." } },
);
const data = await resp.json();

Example response

{
  "data": [
    {
      "accession": "0001079973-26-000721",
      "company_name": "Oncology Institute, Inc.",
      "ticker": "TOI, DFPH, TOIIW",
      "ciks": [
        "0001799191"
      ],
      "filed_at": "2026-05-22",
      "items": [
        "1.05",
        "9.01"
      ],
      "category": "cybersecurity_incident",
      "document": "toi_8k.htm",
      "filing_url": "https://www.sec.gov/Archives/edgar/data/1799191/000107997326000721/toi_8k.htm"
    },
    {
      "accession": "0000105770-26-000077",
      "company_name": "WEST PHARMACEUTICAL SERVICES INC",
      "ticker": "WST",
      "ciks": [
        "0000105770"
      ],
      "filed_at": "2026-05-20",
      "items": [
        "1.05",
        "9.01"
      ],
      "category": "cybersecurity_incident",
      "document": "wst-20260507.htm",
      "filing_url": "https://www.sec.gov/Archives/edgar/data/105770/000010577026000077/wst-20260507.htm"
    }
  ],
  "page": {
    "limit": 3,
    "next_cursor": "M3xjeWJlcg",
    "has_more": true
  },
  "as_of": "2026-06-13T16:27:31.858251Z",
  "source": "edgar_full_text",
  "query_echo": {
    "item": "1.05",
    "form": "8-K",
    "total_incidents": 70,
    "limit": 3
  },
  "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.
404No record for the supplied path parameter.
422Validation error — a parameter was the wrong type or out of range.
429Rate limited.

All data derives from public SEC EDGAR (and, where noted, FINRA IAPD / USPTO) filings. Clous is independent of the SEC.

On this page