ClousDocs
API Reference

Financial statements

Standardized financial-statement line items parsed from XBRL.

Financial statements

Standardized financial-statement line items parsed from XBRL.

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

GET /v1/financial-statements

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/financial-statements?limit=3" \
  -H "Authorization: Bearer clous_live_..."
import requests
resp = requests.get(
    "https://api.clous.ai/v1/financial-statements",
    params={"limit":"3"},
    headers={"Authorization": "Bearer clous_live_..."},
)
data = resp.json()
const resp = await fetch(
  "https://api.clous.ai/v1/financial-statements?limit=3",
  { headers: { Authorization: "Bearer clous_live_..." } },
);
const data = await resp.json();

Example response

{
  "data": [
    {
      "adsh": "0001354488-14-001188",
      "cik": 34956,
      "company_name": "OXYGEN BIOTHERAPEUTICS, INC.",
      "sic": "8731",
      "tag": "CashAndCashEquivalentsAtCarryingValue",
      "ddate": "2147-02-04",
      "qtrs": 0,
      "uom": "USD",
      "value": 0,
      "fiscal_period": "Q3"
    },
    {
      "adsh": "0001052918-14-000319",
      "cik": 1434994,
      "company_name": "SILVER HILL MINES INC",
      "sic": "6770",
      "tag": "CashAndCashEquivalentsAtCarryingValue",
      "ddate": "2140-09-04",
      "qtrs": 0,
      "uom": "USD",
      "value": 0,
      "fiscal_period": "Q2"
    }
  ],
  "page": {
    "limit": 3,
    "next_cursor": "MjE0MDA5MDR8MDAwMTA1MjkxOC0xNC0wMDAxOTM",
    "has_more": true
  },
  "as_of": "2026-06-13T16:27:33.828996Z",
  "source": "xbrl",
  "query_echo": {
    "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