API Reference
Filing documents
The document manifest for a filing — every file, its type, size, and direct URL.
Filing documents
The document manifest for a filing — every file, its type, size, and direct URL.
- Base URL:
https://api.clous.ai - Auth:
Authorization: Bearer clous_live_...
GET /v1/filings/{accession}/documentsResults are returned through the standard response envelope and are cursor-paginated.
This endpoint takes a path parameter (accession). Resolve it via /v1/filings or /v1/entities first.
Example request
curl -s "https://api.clous.ai/v1/filings/0000320193-25-000079/documents" \
-H "Authorization: Bearer clous_live_..."import requests
resp = requests.get(
"https://api.clous.ai/v1/filings/0000320193-25-000079/documents",
params={},
headers={"Authorization": "Bearer clous_live_..."},
)
data = resp.json()const resp = await fetch(
"https://api.clous.ai/v1/filings/0000320193-25-000079/documents",
{ headers: { Authorization: "Bearer clous_live_..." } },
);
const data = await resp.json();Example response
{
"data": [
{
"accession": "0000320193-25-000079",
"cik": "0000320193",
"company_name": "Apple Inc.",
"form_type": "10-K",
"filed_at": "2025-10-31",
"primary_document": "aapl-20250927.htm",
"filing_index_url": "https://www.sec.gov/Archives/edgar/data/320193/000032019325000079/",
"documents": [
{
"name": "0000320193-25-000079-index-headers.html",
"type": "text.gif",
"size": 0,
"last_modified": "2025-10-31 06:01:26",
"url": "https://www.sec.gov/Archives/edgar/data/320193/000032019325000079/0000320193-25-000079-index-headers.html"
},
{
"name": "0000320193-25-000079-index.html",
"type": "text.gif",
"size": 0,
"last_modified": "2025-10-31 06:01:26",
"url": "https://www.sec.gov/Archives/edgar/data/320193/000032019325000079/0000320193-25-000079-index.html"
}
]
}
],
"page": {
"limit": 1,
"next_cursor": null,
"has_more": false
},
"as_of": "2026-06-13T16:27:32.553104Z",
"source": "edgar",
"query_echo": {
"accession": "0000320193-25-000079"
},
"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.